我有一个基本的.each评论声明,并在其底部是一个添加新评论的表单。目标很简单,但我已经尝试了很多,无法让它工作。当有人在表单中提交评论时,我希望该评论显示在上面,并使用jQuery将表单向下移动。这工作正常,但我有两个问题。
我需要jQuery显示的新注释来继承一个名为triangle-right的CSS类。
我需要表单清除,它会在提交后保留最后一条评论。
这是jQuery。同样,我需要@ comment.recommendation来显示使用CSS类三角形右边和要清除的表单。 #newrec就是表格。
$('#newrec').before('<%= escape_javascript(@comment.recommendation) %>');
如果它有用,这里是视图。
<% recs.each do |r| %>
<% name = User.find_by(:id => r.user_id)%>
<p class = "triangle-right" id ="comment_<%=r.id%>">
<b><%=name.first_name.capitalize %> <%=name.last_name.capitalize %></b>: <%=r.recommendation %></br></br>
<%= link_to '<i class="icon-edit"></i>'.html_safe, edit_comment_url(r),class:"btn btn-warning" if current_user.present? && r.user_id == current_user.id %>
<%= link_to '<i class="icon-trash"></i>'.html_safe, comment_url(r), class:"btn btn-danger", method: 'delete', remote: true if current_user.present? && r.user_id == current_user.id %>
</p>
<%end%>
<!-- LIST OF RECOMMENDATIONS IS ABOVE -->
<!-- FORM FOR RECS BELOW -->
<div>
<%= form_tag(commentpost_url, id: "newrec", method: 'post', remote: true) do %>
<h4><%= "Give your recommendations:" if current_user.present? %></h4>
<%= text_area_tag :recommendation, nil, class: "rectextarea", id: "new_rec" if current_user.present? %>
<%= hidden_field_tag :trip_detail_id, d.id %>
<%= hidden_field_tag :user_id, current_user.id if current_user.present?%>
<div>
<% if current_user.present? && @trip.userid == current_user.id %>
<%= submit_tag 'Add Comment', class: "btn btn-large btn-success" if current_user.present? %>
<%else%>
<%= submit_tag 'Submit Recs!', class: "btn btn-large btn-success" if current_user.present? %>
<%end%>
</div>
<% end %>
最后是控制器
def create
@comment = Comment.new
@comment.recommendation = params[:recommendation]
@comment.trip_detail_id = params[:trip_detail_id]
@comment.user_id = params[:user_id]
if @comment.save
respond_to do |format|
format.html { redirect_to :back, notice: 'Rec was successfully created.' }
format.json { render action: 'show', status: :created, location: @comment }
format.js
end
else
render 'new'
end
端
谢谢!
答案 0 :(得分:0)
解决方案是:
<li>
部分提取为部分。像这样的伪js代码
$('ul#comments').append('<%=j render partial: "comment", locals: {comment: @comment}')
$('#comment_form').html('<%=j render partial: "comment_form",
locals: {comment: Comment.new)')
P.S你的代码确实需要改进。在视野中有太多逻辑,而且有太多非传统的东西。