我正在尝试发布并保存表单,其中包含2个模型的数据,它们与关联相关联。但它失败了
Sequel::MassAssignmentRestriction
来自关联表的列的方法不存在。我理解错误并找到rails的答案。哪个是用的
accepts_nested_attributes
但我使用的是Padrino,而不是rails。所以我尝试了nested_parameters,但它不起作用,文档告诉
The nested_attributes call defines a single method, association_attributes=, (e.g. albums_attributes=). So if you have an Artist instance:
我明白这不是我需要的,用
存储所有内容@article = Article.new(params[:article])
及相关表格。
拜托,你知道如何使用Padrino和正确的方式
由于