使用 RJS 时显示内容的问题

发布于 2024-10-11 06:42:14 字数 653 浏览 4 评论 0原文

我很确定这是一个愚蠢的错误,但我无法发现它。请帮我解决这个问题。

我使用选择标签来选择一个主题,这会触发 filter_by_content 方法。我正在使用 Rails 2.3.2。

这是我的控制器代码

def filter_by_content
  @articles = Article.find(:all)
end

我的 RJS (filter_by_content.rjs)

update_page do |page|
  page.replace_html 'articles', :partial => 'main/filtered', :object => @articles
end

我的部分“过滤”

<div id = "articles">
  <% if @articles %>
    <% @articles.each do |article| %>
      <%= article.title %>
    <% end %>
  <% end %>
</div>

我检查了我的服务器,文章肯定会被获取,但问题在于显示它们。

I'm quite sure this is a silly error but I'm unable to spot it. Please help me out on this.

I'm using a select tag to select a topic, which triggers the filter_by_content method. I'm using Rails 2.3.2.

This is my controller code

def filter_by_content
  @articles = Article.find(:all)
end

My RJS (filter_by_content.rjs)

update_page do |page|
  page.replace_html 'articles', :partial => 'main/filtered', :object => @articles
end

My Partial 'filtered'

<div id = "articles">
  <% if @articles %>
    <% @articles.each do |article| %>
      <%= article.title %>
    <% end %>
  <% end %>
</div>

I checked my server, and the articles are sure getting fetched but the problem is with displaying them.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

維他命╮ 2024-10-18 06:42:14

好吧,事实证明,如果我删除对 JQuery 的引用并仅使用原型,它就可以正常工作。

所以我必须安装 JRails,现在它工作正常。

Ok turns out, if I remove the reference to JQuery and use only prototype, it works fine.

So I had to install JRails and now it works fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文