我的
Html:
原文链接:https://www.f2er.com/angularjs/240529.html<div class="graph-display" ng-controller="jsonServerBox"> <div class="bar-chart-Box" ng-repeat="module in ocw.modules"> <canvas class="chart chart-bar" data="{{module.data}}" labels="{{module.labels}}" series="{{module.series}}"></canvas> </div> </div>
我的JS:
app.controller('jsonServerBox',function($scope,$http) { var json = $http.get('serverBox.json').then(function(res){ return res.data; }); $scope.ocw = json; });
图表没有显示,不知道为什么?我也没有在控制台中出现任何错误.
[{"modules":[ { "series":"SeriesA","data":["90","99","80","91","76","75","60","67","59","55"],"labels":["01","02","03","04","05","06","07","08","09","10"] },{ "series":"SeriesB","10"] } ]} ]
控制台日志:
modules: Array[2]0: Objectdata: Array[10]0: "90"1: "99"2: "80"3: "91"4: "76"5: "75"6: "60"7: "67"8: "59"9: "55"length: 10__proto__: Array[0]labels: Array[10]0: "01"1: "02"2: "03"3: "04"4: "05"5: "06"6: "07"7: "08"8: "09"9: "10"length: 10__proto__: Array[0]series: "SeriesA"__proto__: Object1: Objectdata: Array[10]0: "90"1: "99"2: "80"3: "91"4: "76"5: "75"6: "60"7: "67"8: "59"9: "55"length: 10__proto__: Array[0]labels: Array[10]0: "01"1: "02"2: "03"3: "04"4: "05"5: "06"6: "07"7: "08"8: "09"9: "10"length: 10__proto__: Array[0]series: "SeriesB"