我在SO和Google上四处寻找,但注意到这样做有所帮助,我不确定如何继续。我有一个数组,它是从php页面返回的echo json_encode(),看起来像这样:
echo json_encode()
[" "," "," "," "," ",1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31]
但是Unexpected token o at Object.parse (native)当我尝试使用JSON.parse()以及Unexpected token o at Function.parse (native)使用JQuery替代方法时,我会不断得到帮助。
Unexpected token o at Object.parse (native)
Unexpected token o at Function.parse (native)
但是当我将其附加到上时,$scope可以在页面上使用进行打印,那么我在做什么错了,我该如何纠正呢?
$scope
这是我的控制器
function myController($scope, memberFactory) { response = memberFactory.getMonth("2013-08-01 06:30:00"); //$scope.response = response; var monthDays = $.parseJSON(response); var dates = []; for (var i = 0; i < monthDays.length; i++) { if (i % 7 == 0) dates.push([]); dates[dates.length - 1].push(monthDays[i]); } $scope.dates = dates; // }
这是我的服务方法:
obj.getMonth = function (date) { var month = $q.defer(); $http.get('getMonth.php?date=' + date) .success(function (data, status, headers, config) { month.resolve(data); }); return month.promise; }
这是我的PHP:
<?php $daysOfMonth=[ " ", " ", " ", " ", " ",1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31]; echo json_encode($daysOfMonth); ?>
如果我返回typeofI get Object,那么我就尝试了,var monthDays = Array.prototype.slice.call(response)并var monthDays = $.map(response, function (value, key) { returnvalue;});按照这里的一些答案中的建议进行了尝试,JSON.stringify()但是我只是得到{}了结果
typeof
var monthDays = Array.prototype.slice.call(response)
var monthDays = $.map(response, function (value, key) { returnvalue;});
JSON.stringify()
{}
我对此感到非常沮丧,非常需要有人为我指出正确的方向
我相信这可能是$q.defer()我更新getMonth方法时使用的一个问题,如下所示:
$q.defer()
obj.getMonth = function (date) { var month = $q.defer(); $http.get('getMonth.php?date=' + date) .success(function (data, status, headers, config) { month.resolve(data); console.log("data " + data[0]); console.log("resolved " + month.promise[0]); }); return month.promise; }
现在我得到1的console.log("data"+data[0]);预期,但我得到了console.log(month);我得到[objectObject]了console.log(month.promise)我得到[objectObject]和console.log(month.promise[0]);我得到undefined
1
console.log("data"+data[0]);
console.log(month);
[objectObject]
console.log(month.promise)
console.log(month.promise[0]);
undefined
response 已被解析,则无需再次解析。
response
如果您再次解析它,它将首先执行toString-cast,因此您正在解析
"[object Object]"
解释了unexpected token o。
unexpected token o