angular 中内循环ng-repeat

<div class="phoneRow" ng-repeat="obj in recommend">
                    <div class="phoneLeft">
                        <img ng-src={{obj['icon_path']}}>
                    </div>
                    <div class="phoneRight">
                        <div class="contai top">
                            <div style="height:20px;color:#212121;font-size:18px">
                                {{obj['name']}}
                            </div>
                            <div style="height:20px;color:#727272;font-size:16px">
                                {{obj['type']}}
                            </div>
                            <div style="height:20px;margin-left:-5px;">
                                <span ng-repeat = "star in obj['star'] track by $index">
                                    <img src={{star}}>
                                </span>
                                
                            </div>
                        </div>
                    </div>
                </div>

你可能感兴趣的:(angular 中内循环ng-repeat)