我正在用angularjs的图像下拉工作,我尝试了许多解决方案,但还没有得到任何成功。我的组合数据是json格式的,有三个元素id,image和value。这些下拉列表的数字也是动态的,因为在模型中有行数。请分享解决方案。谢谢你,谢谢你
ef1yzkbh1#
请试试这个,
<select ng-model="choice"> <option ng-repeat="item in itemsList" data-image="{{item.url}}">{{item.label}}</option> <select>
eit6fx6z2#
<select ng-model="image_chosen"> <option ng-repeat="data in list" data-image="{{data.url}}" value="{{data.id}}">{{data.value}}</option> <option value="">Choose a option</option> </select>
57hvy0tb3#
在**angularjs select option with custom format value**上查看示例
希望能有所帮助。
2w2cym1i4#
在选项标记中这样书写重复=“xxxxComboData中的对象”数据-图像="{{对象图像}}”
4条答案
按热度按时间ef1yzkbh1#
请试试这个,
eit6fx6z2#
57hvy0tb3#
在**angularjs select option with custom format value**上查看示例
希望能有所帮助。
2w2cym1i4#
在选项标记中这样书写
重复=“xxxxComboData中的对象”数据-图像="{{对象图像}}”