在使用 (key, value) 风味时,我正在尝试将 md-chips 与 ng-repeat 一起使用,这是我正在尝试做的一个示例:
<md-content class="md-padding" layout="column" ng-repeat="(key,value) in items">
<md-chips ng-model="???" name="fruitName" readonly="true" md-removable="" md-max-chips="5">
<md-chip-template>
<strong>{{key}} :{{value}}</strong>
</md-chip-template>
</md-chips>
</md-content>
(我不知道该怎么做ng-model
)。
谢谢你提前
编辑
这里是我的 json 数据例如 {'a':'1','b':'2','c':'3'}
<md-chips class="custom-chips" ng-model="ctrl.vegObjs" readonly="true">
<md-chip-template>
<span>
<strong> {{$chip}} </strong>
</span>
</md-chip-template>
</md-chips>
通过使用此代码,我可以获得 {"a":"1"} {"b":"2"} {"c":"3"},但这并不是我想要的。