angularjs - ng-repeat not working in md-chip -


why md-chip not supporting ng-repeat?

<md-chips>           <md-chip data-ng-repeat="category in book.categories">             {{category.name}}           </md-chip>         </md-chips> 

with angular 1.3.15 / angular-material 0.9.8, following works here:

in controller:

$scope.mynumbers = [ 1, 2, 3 ]; 

in html:

  <md-chips ng-model="mynumbers" readonly="true">   </md-chips> 

Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -