2
我如何使用json在rails中更新nested_attributes?
class Test < ActiveRecord::Base
has_many :samples
accepts_nested_attributes_for :samples
end
和
class Sample < ActiveRecord::Base
belongs_to :tests
end
現在,當我創造新的價值如下
捲曲-H '內容類型:應用程序/ JSON' -H「接受:應用程序/ json' -X POST
http://localhost:3000/tests.json
-d「{\」test \「:{\」name \「:\」xxxxxx \「, \」samples_attributes \「:[{\」username \「:\」yyyyyyy \「,\」age \「:\」25 \「}]}}」
它創建測試新的價值,它還會在sample
表中的條目,但鑑於,會在樣品表中的新條目更新時,它更新測試表。所以我如何才能更新當前條目呢?
請幫幫我。
是的,你是絕對正確的。我早些時候嘗試過,它工作並忘記發佈答案。反正謝謝你。 – logesh