Ember view dropdown Dropdown有空标签

时间:2015-03-02 09:38:52

标签: ember.js

当我使用此模型时,Dropdown有空标签。我将标签路径设置为type。我的服务器在json中返回2个模型,我看到2个下拉项(空)

export default DS.Model.extend({ 
    type: DS.attr('string') 
    }); 


    {{view "select" prompt="Account type" content=model optionLabelPath="type" optionValuePath="id"}}

1 个答案:

答案 0 :(得分:0)

应该是:

{{view" select" prompt ="帐户类型" content = model optionLabelPath =" content.type" optionValuePath =" content.id"}}