通過輸入表單上的選擇框選擇與其父母的belongsTo關聯有困難。問題Ember選擇框選擇一種形式的子關聯
型號
export default DS.Model.extend({
proNumber: DS.attr('number'),
status: DS.attr('string'),
special: DS.attr('string'),
customer: DS.belongsTo('customer', { async: true }),
carrier: DS.belongsTo('carrier', { async: true }),
equipmentList: DS.belongsTo('equipment-list', { async: true}),
stops: DS.hasMany('stop'),
loadRates: DS.hasMany('load-rate'),
grossPay: Ember.computed.mapBy('loadRates', 'rate'),
totalGrossPay: Ember.computed.sum('grossPay')
});
模式,我想聯想是客戶之上。
輸入 - 從材料 - 工程完全像大多數選擇框灰燼插件
{{md-select content=customerList
value=model.customer <-- doesn't work
label="Customer"
prompt="Please Choose a Customer..."
optionLabelPath='content.name'
optionValuePath='content.id'}}
值不起作用。
你的ID進行比較?也許它是'value = model.customer.id'? – GSP
@GSP這給了我'未捕獲的錯誤:斷言失敗:記錄的ID一旦處於加載狀態就不能改變' –