0
我用$resource
使GET
請求到服務器,我得到的日期時間(從Chrome開發者工具的網絡標籤)與例如時區數據:但是隻要結果得到與$promise
then
下解決2016-01-27T14:30:00.000-07:00
阻止它似乎將該時區自動轉換爲我瀏覽器的本地時間。角似乎時區轉換自動
所以我叫下面的代碼:
return testService.get(id)
.then(function(result){
console.log(result);
});
test.service.js:
this.get = function(id){
return resource.get({id: id}).$promise;
}
上面的console.log(result)
結果已經是這樣28-Jan-2016 08:30
是否有一個原因這是自動翻譯?
我怎樣才能阻止這個,因爲它的渲染的模板
這與angular以及javascript'Date'對象在瀏覽器中的工作方式無關。不是一個簡單的主題....做一些閱讀 – charlietfl