angularjs - <md-list-item> in angular material js ng-repeat -


i'm new angular. have issue. have code this:

<md-list-item ng-repeat="c_comments in card_comments|filter:{ parent_id:'0' }">    <img src=""></img>     <md-list-item ng-repeat="c_comments in card_comments|filter:{ parent_id:'1' }">      <img src=""></img>        <md-list-item ng-repeat="c_comments in card_comments|filter:{ parent_id:'2' }">         <img src=""></img>            <md-list-item ng-repeat="c_comments in card_comments|filter:{ parent_id:'3' }">            <img src=""></img>            </md-list-item>         </md-list-item>      </md-list-item> </md-list-item> 

here parent_id infinity ( 0,1,2,3,4,.....). how write code in ng-repeat?


Comments

Popular posts from this blog

php - trouble displaying mysqli database results in correct order -

depending on nth recurrence of job in control M -

sql server - Cannot query correctly (MSSQL - PHP - JSON) -