我在我的 Rails 应用程序中有一个简单的投票操作,我希望在成功的创建操作后显示一个模式弹出窗口(如 twitter 引导程序中的 on)。我有一个模态视图部分,一个接受 .js 的 respond_to 块和一个 create.js.erb 文件,理论上应该在调用 create 操作时显示,如果我没记错的话?
我只是不太明白如何将所有这些东西连接在一起,(我也认为javascript不正确)任何提示都会非常感谢!
控制器.rb
def create
@vote = Vote.new(params[:vote])
respond_to do |format|
if @vote.save
format.html { redirect_to :back, notice: "Thank you for voting! why not Tweet your vote?" }
format.js <!--should there be a call to a specific file here?-->
else
flash[:error] = "please try again"
redirect_to :back
end
end
end
end
投票/info.html.erb
<div class="modal hide fade">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Thanks for voting!</h3>
</div>
<div class="modal-body">
<p>Why not tweet your selection?</p>
</div>
<div class="modal-footer">
<a href="#" class="btn">Close</a>
<a href="#" class="btn btn-primary">Save changes</a>
</div>
</div>
投票/create.js.erb
$(".modal").html(<%= escape_javascript render partial: 'votes/info' %>);
$(".modal").show();
投票_form.html.erb
<%= form_for([Vote.new(hotel_id: hotel.id)]) do |f| %>
<%= f.hidden_field :hotel_id %>
<%= f.submit "Vote", class: "btn-large btn-info" %>
<% end %>