在dhtmlxScheduler和AngularJS中将Date转换为String

时间:2014-03-07 18:17:50

标签: javascript angularjs angularjs-scope dhtmlx dhtmlx-scheduler

我正在使用带有AngularJS的dhtmlxScheduler,我正在寻找一种将Date对象转换为字符串的方法。我只关心在以下app.js代码中转换开始日期而不是结束日期

   'use strict';

    /* App Module */

    var app = angular.module('schedulerApp', [ ]);

    app.controller('MainSchedulerCtrl', function($scope) {


     $scope.events = [
        { 
          id:1, text:"Task A-12458",

          start_date: new Date(2013, 3, 12), // How would I store this date in a string?

          end_date: new Date(2013, 3, 14) },

     ];

     $scope.scheduler = { date : new Date(2013,10,1) };

     });

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

如果您只是使用字符串显示在网页上,那么您可以使用date filter

{{date_expression |日期:日期:格式}}