best_in_place gemでネストされたリソースを使用することが可能かどうか(もしそうなら、どのような構文であるか)を知っていますか?Rails best_in_placeネストされたリソースを持つ宝石
私のroutes.rbを、私は目標の:description
フィールドを編集したいと思い、この
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を実行している
は、1.0.4
私は同様の問題を抱えています。http://stackoverflow.com/questions/30090219/best-in-place-building-exotic-method-after-creation – Sauron