angulaire.js - À propos du problème du tableau ng-repeat d'Angularjs
黄舟
黄舟 2017-05-15 17:03:51
0
1
431
angular.module("myApp",["myDirective"])
    .controller("myController",["$scope",function($scope){
        $scope.data={
            "one":["状态1","状态2","状态3","状态4"],
            "one1":["状态1","状态2","状态3","状态4"],
        };
        $scope.choice="";
        $scope.choice1="";
        $scope.pane=[
            {'title':'本月个人排行','text':'1','white':true,'data':'["名字","销售额","排名"]'},
            {'title':"本月门店排行",'text':'1','white':false,'data':'["名字","销售额","排名"]'},
            {'title':"上月个人排行",'text':'1','white':false,'data':'["名字","销售额","排名"]'},
            {'title':"上月门店排行",'text':'1','white':false,'data':'["名字","销售额","排名"]'}
        ];

    }]);
  <table>
            <tr ng-repeat="j in pane">
                <td ng-repeat="x in j.data track by $index">{{x}}</td>
            </tr>
        </table>

Mais il y a un problème comme indiqué ci-dessous. Pourriez-vous s'il vous plaît me dire comment résoudre ce problème : (

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

répondre à tous(1)
黄舟

{'title':'Classement personnel ce mois-ci','text':'1','white':true,'data':'["name","sales","ranking"]'} ,

j.data est une chaîne. .

{'title':'Classement personnel ce mois-ci','text':'1','white':true,'data':["name","sales","ranking"]},
Essayez ceci

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal