使用 RJS 时显示内容的问题
我很确定这是一个愚蠢的错误,但我无法发现它。请帮我解决这个问题。
我使用选择标签来选择一个主题,这会触发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,事实证明,如果我删除对 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.