RoR:form_for操作按钮没有响应
我正在编写Ruby on Rails 教程:通过示例学习 Rails 中的项目,但在以下和取消以下功能方面遇到了问题。
我的一个页面中有一段 HTML,如下所示:
<%= form_for current_user.relationships.build(:followed_id => @user.id),
:remote => true do |f| %>
<div><%= f.hidden_field :followed_id %></div>
<div class="actions"><%= f.submit "Follow" %></div>
<% end %>
我的 RelationshipsController 有一个 create 方法,但从未被调用。这同样适用于我的“取消关注”html 和相应的销毁方法。我是否需要添加一些东西到我的项目中,让Rails知道relationships.build方法应该调用create方法,或者这是自动的?
提前致谢。
I'm coding the project from Ruby on Rails Tutorial: Learn Rails by Example and am having trouble with the following and unfollowing features.
I have a piece of HTML in one of my pages that looks like this:
<%= form_for current_user.relationships.build(:followed_id => @user.id),
:remote => true do |f| %>
<div><%= f.hidden_field :followed_id %></div>
<div class="actions"><%= f.submit "Follow" %></div>
<% end %>
My RelationshipsController has a create method, but it is never called. The same applies to my 'unfollow' html and corresponding destroy method. Is there something I need to add to my project to let Rails know that the relationships.build method should call the create method, or is that automatic?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是create还是build?
向我们展示控制器代码。由于您使用“remote=> true”,您可能需要更改其中的“respond_to”代码并创建一个 js.erb 文件。
Is it create or build?
Show us the controller code. Since you use "remote=> true" you probably need to change the "respond_to" code in there and create a js.erb file.