我使用了一些在 Rails 3 上运行良好但在 Rails 4 上运行良好的代码,我猜这是由 Turbolinks 引起的,但我对此了解不多,无法更深入地解决我的问题,这里是代码:
看法:
a/v/m/_new_comment.slim
.new-comment
- if current_user
= render "editor_toolbar"
= form_for(Comment.new, :remote => true, :url => mission_comments_path(@mission)) do |f|
= f.text_area :content, :class => "span10",
:rows => "4", :tabindex => "1"
#preview.hidden
= "Loading..."
= f.submit t("missions.submit_comment"),
"data-disable-with" => t("missions.submitting"),
:class => "btn btn-primary", :tabindex => "2"
- else
= render "need_login_to_comment"
控制器:
def create
@mission = Mission.find(params[:mission_id])
@comment = @mission.comments.build(comment_params)
@comment.user = current_user
if @comment.save
@mission.events.create(user: current_user, action: "comment")
render layout: false
end
和js:
<% if @comment.errors.any? %>
$(".new-comment textarea").focus();
<% else %>
$(".comments").append("<%= j (render @comment, :index => @mission.comments.count-1) %>");
$(".new-comment #preview").addClass("hidden").html('');
$(".new-comment textarea").css("display", "block").val('');
$(".editor-toolbar .preview").removeClass("active");
$(".editor-toolbar .edit").addClass("active");
<% end %>
关于这段代码我有两个问题,首先:像这样的控制器代码不起作用,js代码被传输到客户端但没有运行,我必须render layout: false
在该操作的底部添加,在 Rails 3 上不需要这个
第二个问题:当我第一次访问这个页面时,重新加载页面,评论功能有效,但是如果我点击其他页面的链接跳转到这个页面,我提交这个表单会导致ajax请求多次调用,会创建多个评论
感谢广告