0
所以我想在ember中使用ember數據構建下面的select下拉列表,並且API將使用JSON API規範。下面是一個截圖例子 JSON API組和子組EmberJS
所以我會在服務模式,狀態下面
應用程序/模型/ service.js
category: DS.belongsTo('category'),
subCategory: DS.belongsTo('sub-category')
應用程序/模型/ category.js
service: DS.hasMany('service'),
subCategory: DS.belongsTo('category')
app/model/category.js
service: DS.hasMany('service'),
category: DS.belongsTo('sub-category')
我覺得我錯過了什麼?思考