首页 > Web开发 > 详细

无法读取json数据 Error: [$http:baddata]

时间:2018-04-13 10:20:08      阅读:673      评论:0      收藏:0      [点我收藏+]

控制台报了一处错误,并且在控制台页打印不出数据

1
2
3
4
5
6
7
8
9
10
11
 Error: [$http:baddata] http://errors.angularjs.org/1.6.4/$http/baddata?p0=%5B%7B%0D%0A%09%22id%22%…C%0D%0A%09%22like%22%20%20%20%20%3A%2298.93%25%22%0D%0A%7D%5D%3B&p1=%7B%7D
    at angular.min.js:6
    at nc (angular.min.js:96)
    at angular.min.js:97
    at q (angular.min.js:7)
    at xd (angular.min.js:97)
    at f (angular.min.js:99)
    at angular.min.js:134
    at m.$digest (angular.min.js:145)
    at m.$apply (angular.min.js:149)
    at l (angular.min.js:102) "Possibly unhandled rejection: {}"

我的代码,mainCtrl.js

1
2
3
4
5
angular.module(‘app‘).controller(‘mainCtrl‘,[‘$http‘,‘$scope‘,function ($http,$scope) {
    $http.get(‘/data/list.json‘).then(function(resp){
        $scope.list= resp.data;
    });
}]);

json数据

1
2
3
4
5
6
7
8
9
10
[{
    "id"      :"1",
    "imgSrc"  :"/image/list_1.jpg",
    "name"    :"黑眼豆豆",
    "oldPrice":"¥22.00",
    "newPrice":"¥9.00",
    "desc"    :"王祖蓝吃了说“完美”",
    "quantity":"438975",
    "like"    :"98.93%"
}];

无法读取json数据 Error: [$http:baddata]

原文:https://www.cnblogs.com/eryaketang/p/8818017.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!