我正在使用带有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) };
});
有什么想法吗?