我在Datamapper中的模型是:
项目:
require "dm-accepts_nested_attributes"
class Project
include DataMapper::Resource
property :id, Serial
property :project_title, String
has n, :tasks
accepts_nested_attributes_for :tasks
端
任务:
class Task
include DataMapper::Resource
property :id, Serial
property :task_name, String
belongs_to :project
end
现在我想为项目创建视图,其中包含用于添加任务的链接。 我用nested_form gem试了一下 和cocoon宝石,但没有用。