有谁知道将嵌套资源与 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