有人知道是否可以(如果可以,语法是什么)使用带有best_in_place gem的嵌套资源吗?
我的routes.rb看起来像这个
resources :users do
resources :goals
end
我想编辑目标的:description
字段,但我认为的代码
<%= best_in_place [@user, @goal], :description %>
给出NoMethodError,表示
undefined method `description' for #<Array:0x20e0d28>
使用
<%= best_in_place @goal, :description %>
给我一个未定义的方法错误,因为没有goal_path
我可以毫无问题地让gem为@user(非嵌套资源)字段工作。
我正在运行Rails 3.1.1、Ruby 1.9.2、best_in_place 1.0.4
我想明白了。
我需要在通话中设置path
选项,就像一样
<%= best_in_place @goal, :description, :path => user_goal_path %>
它现在像冠军一样工作!
将路径和对象添加到路径:
<%= best_in_place @goal, :description, :path => user_goal_path(@user,@goal) %>
不知怎的,bkoles的简单路径解决方案对我不起作用。
现在不赞成使用上述方法。
根据最新文档,在示例中使用":url"而不是":path"
<%= best_in_place @goal, :description, :url => user_goal_path %>
干杯!
谢谢你,@bknoles。你的回答无疑帮助我找到了类似的解决方案。这是我的实现:
#widget.rb
class Widget < ActiveRecord::Base
validates_presence_of :name
has_many :gadgets
attr_accessible :name, :description
end
#gadget.rb
class Gadget < ActiveRecord::Base
belongs_to :widget
attr_accessible :name, :widget_id, :id
end
#gadgets_controller.rb
def update
@gadget=@widget.gadgets.find(params[:id])
if @gadget.update_attributes(params[:gadget])
respond_to do |format|
format.html
format.json { respond_with_bip(@gadget) }
end
else
respond_to do |format|
format.html { render :action => "edit" }
format.json { respond_with_bip(@gadget) }
end
end
end
#views/gadgets/_gadget.html.haml
%tr{ :name => "gadget_", :id => gadget.id }
%td= gadget.created_at.localtime.strftime("%B %d, %l:%M%p")
%td.big=best_in_place gadget, :name, :path => [@widget, gadget]
%td.delete{:style => 'text-align:center;'}
=check_box_tag "gadget_ids[]", gadget.id, false, :class => "checkbox"
如果您想查看更多代码,可以在github上签出整个项目。
https://github.com/hernamesbarbara/ajax-rails-full-crud
最佳,Austin