解決mongodb ISODate相差8小時問題

來源:互聯網
上載者:User

標籤:

服務端使用mongoose操作mongodb,其中Schema中的日期欄位定義如下:

date:   {type:Date, default:Date.now},//操作日期

插入到mongodb中adte為:"date" : ISODate("2015-08-15T03:26:36.086Z"),

與目前時間相差8小時,用戶端採用angular進行操作,在頁面上展示的內容為:2015-08-15T03:26:36.086Z

現在通過使用moment.js在用戶端進行處理,處理方式是定義一個過濾器filter來進行處理.

(1)安裝moment.js

[email protected]:app01$ bower install --save moment

(2)定義filter

angular.module(‘angularFullstackTestApp‘)  .controller(‘AdviceCtrl‘, function ($scope,$http,socket) {    $scope.adviceList = [];    /**     * 擷取意見反饋列表     */    $scope.getAdviceList = function(){      $http.get(‘/api/advices‘).success(function(result) {        $scope.adviceList = result;      }).error(function(){        alert("網路錯誤");      });    };    $scope.getAdviceList();    $scope.$on(‘$destroy‘, function () {      socket.unsyncUpdates(‘thing‘);    });  }).filter(‘getLocalTimeFilter‘,function(){//使用moment.js將ISODate轉換為本地時間    return function(input){      if(input && input.length>11){        return moment(input).format(‘YYYY-MM-DD HH:mm:ss‘);      }      return input;    };  });

(3)使用filter

td(style="vertical-align:middle") {{a.date | getLocalTimeFilter}}

 

此時操作介面時間顯示正常:2015-08-15 11:26:36

 



解決mongodb ISODate相差8小時問題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.