我試着遵循RailsCasts的例子來獲取動態表單的工作方式,但無法正常工作。基本上我有一個has_many任務的項目,我希望能夠在創建或編輯項目時動態添加和刪除任務。我怎樣才能做到這一點?Rails 3.1動態嵌套表格
1
A
回答
2
直接使用瑞安貝特的寶石。
It lies here with documentation.順便說一句,該文檔正好描述了您的用例。
1
Apneadiving是正確的,但它並沒有真正幫助新人。
這隻適用於rails 3.1和ruby 3.2,但我沒有測試過。
如果你添加以下到您Application_root/app/assets/javascripts/application.js
文件(我把它添加到最後一行):
//= require jquery_nested_form
一個新鮮的看起來如下
// This is a manifest file that'll be compiled into including all the files listed below.
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
// be included in the compiled file accessible from http://example.com/assets/application.js
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// the compiled file.
//
//= require jquery
//= require jquery_ujs
//= require_tree .
//= require jquery_nested_form
或者,如果你是使用原型的某些原因:
// This is a manifest file that'll be compiled into including all the files listed below.
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
// be included in the compiled file accessible from http://example.com/assets/application.js
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// the compiled file.
//
//= require jquery
//= require jquery_ujs
//= require_tree .
//= require prototype_nested_form
相關問題
- 1. Rails - 嵌套表格
- 2. Rails 3.1/Ruby - 嵌套循環?
- 3. Rails 3.1與RABL深嵌套
- 4. Rails:渲染嵌套表格
- 5. Rails與Ajax嵌套表格
- 6. Ruby on Rails嵌套表格
- 7. 嵌套表格Ruby on Rails
- 8. Rails嵌套複合表格
- 9. Rails嵌套表格爲belongs_to
- 10. Ruby on Rails - 嵌套表格
- 11. Rails 3.1活動記錄關聯可能與嵌套表單
- 12. Rails - 只有一個元素的動態嵌套表格
- 13. 在動態創建對象的Rails中嵌套表格
- 14. 反應嵌套的動態表格
- 15. 嵌套屬性在Rails的節省3.1
- 16. 在rails中嵌套窗體3.1
- 17. 創建嵌套模型 - Rails 3.1
- 18. 的Rails 3.1嵌套形式問題
- 19. 嵌套表格Rails中不表
- 20. 的Rails 3.1驗證嵌套屬性的唯一性態關聯
- 21. jquery動態嵌套列表
- 22. Python - 動態嵌套列表
- 23. 動態頁面的Rails嵌套路由
- 24. Ruby on Rails嵌套動態字段
- 25. Rails 3.1+簡單嵌套表單驗證和Twitter引導控制狀態
- 26. Rails 3.1:在AWS S3上使用PaperClip/Mongoid/SimpleForm上載文件< - 嵌套表格
- 27. Ruby on Rails 3 - 嵌套模型表格
- 28. 從Rails嵌套表格訪問參數
- 29. Rails的嵌套表格範本
- 30. 在Rails 4.0.3中嵌套的表格
您能否要麼顯示您的c頌?我可以幫你一把! – LearningRoR