monitorService.getFMCMonitor({ scenario: 'indoor'},function(res){
$scope.data = res;
});
//$scope.$watch('data',(n,o)=>console.log(n));
console.log($scope.data); ==> undefined
monitorService
是一個取得後台資料的service
,如果不用$watch
,$timeout
,怎麼同步$scope.data
的值?就是一印$scope.data
,就是服務裡取到的值,而不是undefined
因為是異步哈,你打印的時候ajax請求還木有返回,自然是undefined啦。
你可以這樣,傳個callback當參數進去啊,或是promise啊,都是可以的。