試圖創建一個Date對象(僅限於使用時間)和訪問我的功能
任何幫助的之外的價值,將不勝感激。請參見下面的代碼或我plunker
var objts = "";
$scope.today = function() {
$http.get('time.json').success(function(data, status, headers, config) {
objts = new Date(data.time_start);
objte = new Date(data.time_end);
console.log(data);
}).error(function(data, status, headers, config) {
console.log("No data found..");
});
$scope.dt = objts; // ---- Trying to use value of objts here ----
};
$scope.today();
感謝
你只會得到異步調用響應在其回調.. –