ruby-on-rails-3 – 具有嵌套资源的Rails best_in_place gem

前端之家收集整理的这篇文章主要介绍了ruby-on-rails-3 – 具有嵌套资源的Rails best_in_place gem前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有人知道如果使用嵌套资源与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 %>

给我一个未定义的方法错误也是因为没有goal_path

我可以让宝石为@user(非嵌套资源)字段工作,没有问题.

我正在运行Rails 3.1.1,Ruby 1.9.2,best_in_place 1.0.4

解决方法

我想到了.

我需要在呼叫中设置路径选项

<%= best_in_place @goal,:description,:path => user_goal_path %>

它现在像一个冠军!

原文链接:https://www.f2er.com/ruby/273989.html

猜你在找的Ruby相关文章