Rails正在输出我的文章两次。目前,我只是循环文章集合并输出它。起初我认为它是AJAX的一个问题,但我删除了application.js和index.js.erb文件中的所有javascript,它仍然重复两次。我还通过登录Rails c并运行Articles.all.count
来检查数据库,并返回正确的文章数。我也重置了数据库并再次尝试使用相同的结果。
文章#索引
<h1 class="text-center">talks</h1>
<div id="articles-list" class="small-12 small-centered columns">
<%= render @articles %>
</div>
<%= will_paginate @articles %>
_article.html.erb partial:
<% @articles.each_with_index do |article, index| %>
<%= index %>
<dl class="individual-article">
<dt><%= article.title %>
<% if current_user.try(:admin) %>
| <%= link_to 'Edit', edit_article_path(article) %>
<% end %><br>
<%= raw article.tags.map(&:name).map { |t| link_to t, tag_path(t), class: get_class(t) }.join(', ') %>
</dt>
<dd><%= truncate(article.body.html_safe, length: 200) %>
<%= link_to 'more', article_path(article) %>
</dd>
</dl>
我把索引打开,如果它正在重复,那就是。如果我有三篇文章,它将输出0 1 2 0 1 2作为indeces。所以我知道它会被执行两次。
文章控制器
def index
if params[:tag]
@articles = Article.tagged_with(params[:tag]).order('created_at DESC').paginate(page: params[:page], per_page: 3)
else
@articles = Article.order('created_at DESC').paginate(page: params[:page], per_page: 3)
end
end
我有一些无限滚动的AJAX可能是问题所在。除非我删除整个js文件,否则它具有相同的行为。
index.js.erb的
$('#articles-list').append('<%= escape_javascript render(@articles) %>');
$('.pagination').replaceWith('<%= escape_javascript will_paginate(@articles) %>');
Application.js
$(document).ready(function() {
if ($('.pagination').length) {
$(window).scroll(function() {
var url = $('.pagination .next_page').attr('href');
if (url && $(window).scrollTop() > $(document).height() - $(window).height() - 50) {
$('.pagination').text("Please Wait...");
return $.getScript(url);
}
});
return $(window).scroll();
}
});
我对Rails相对较新,并希望了解如何防止它执行两次。
修改
部分服务器日志:
...
Article Load (0.2ms) SELECT "articles".* FROM "articles" ORDER BY created_at DESC LIMIT 3 OFFSET 0
...
Rendered articles/_article.html.erb (6.5ms)
Rendered articles/index.html.erb within layouts/application (12.8ms)
Rendered layouts/_header.html.erb (0.4ms)
答案 0 :(得分:7)
您正在将集合传递给部分。这将为@articles中的每个元素渲染部分时间。 在部分中,然后再次在@articles上循环。 如果您不需要索引,请将该循环置于partial之外或将其删除。 这些都有效:
文章#索引
<div id="articles-list" class="small-12 small-centered columns">
<% @articles.each_with_index do |article, index| %>
<%= render 'article', article: article, index: index %>
<%end%>
</div>
_article.html.erb partial:
<%= index %>
<dl class="individual-article">
<dt><%= article.title %>
<% if current_user.try(:admin) %>
| <%= link_to 'Edit', edit_article_path(article) %>
<% end %><br>
<%= raw article.tags.map(&:name).map { |t| link_to t, tag_path(t), class: get_class(t) }.join(', ') %>
</dt>
<dd><%= truncate(article.body.html_safe, length: 200) %>
<%= link_to 'more', article_path(article) %>
</dd>
</dl>
或者如果您不需要部分索引,请保持index.html,就像现在一样,只需从部分中删除循环:
_article.html.erb partial:
<dl class="individual-article">
<dt><%= article.title %>
<% if current_user.try(:admin) %>
| <%= link_to 'Edit', edit_article_path(article) %>
<% end %><br>
<%= raw article.tags.map(&:name).map { |t| link_to t, tag_path(t), class: get_class(t) }.join(', ') %>
</dt>
<dd><%= truncate(article.body.html_safe, length: 200) %>
<%= link_to 'more', article_path(article) %>
</dd>