我想從指定的URL返回JSON數據,但當警報彈出它只是顯示[對象對象]。我打算日期顯示在日曆中,但僅限於您進入json的日期,而不是所有日子。我該怎麼做?JSON返回[對象對象] angularjs
我的日曆
這裏是JSON的一個例子。
{
"title": "example glossary",
"start": "2016-10-22",
"allDay": false
}
控制器
$scope.setDayContent = function(date) {
return $http ({
method : "GET",
url : "app/components/home/controller/test_calendar.json"
}).then(function mySucces(response) {
return response.data;
}, function myError(response) {
$scope.valor = response.statusText;
});
};
如果我把它這樣,它工作正常<p>A data {{valor.start}}</p>
,但我要的是出現在日曆上,然後在錯誤出現[對象的對象。
打印使用'的console.log(響應)錯誤;'看的對象。警報無法將對象文字解析爲字符串。 –
警報在哪裏? –
如果我把console.log(response.data)他給我的所有參數在我的JSON對象,但我只有一個對象,並循環。返回20個對象是否正常?我只有1 –