有人知道如果使用嵌套资源与best_in_place gem可能(如果是,如果是,语法是什么)?
我的routes.rb看起来像这样
resources :users do resources :goals end
我想编辑:描述字段的目标,但我的视图中的代码
<%= best_in_place [@user,@goal],:description %>
给出一个NoMethodError的说法
undefined method `description' for #<Array:0x20e0d28>
运用
<%= best_in_place @goal,:description %>
我可以让宝石为@user(非嵌套资源)字段工作,没有问题.
我正在运行Rails 3.1.1,Ruby 1.9.2,best_in_place 1.0.4
解决方法
我想到了.
我需要在呼叫中设置路径选项
<%= best_in_place @goal,:description,:path => user_goal_path %>
它现在像一个冠军!