1

我想将我的文件模型与其他两个模型一起使用。

App.File = DS.Model.extend({
   filename: DS.attr('string'),
   //related:DS.belongsTo('App.Task' and 'App.Comment'),
});

App.Task = DS.Model.extend({
    title: DS.attr('string'),
    files:DS.hasMany('App.Files'),
});

App.Comment = DS.Model.extend({
    comment:DS.attr('string'),
    files:DS.hasMany('App.Files'),
});

数据库结构有一个related_id 和related_type 列。如何设置它以使用 ember?

4

0 回答 0