0
我試圖更新模型的belongsTo關係,但Ember不會將category_id
屬性發送到API,除非我將異步設置爲false,而我不想這樣做。Emberjs:更新belongsTo不會發送id到API
這裏是我的模型:
App.reopen
Category: DS.Model.extend(
name: DS.attr('string')
)
Product: DS.Model.extend(
category: DS.belongsTo('category', async: true)
)
這裏的我如何嘗試更新的產品的類似的例子。
@store.find('category', 1).then (category) ->
product.set('category', category)
product.save()
當查看我的API的日誌時,沒有給出category_id
屬性。如果我從模型定義中刪除async: true
,一切都很好。