我在下面有这个 node.js 代码;
var moment = require('moment')
var myDate = new Date("2008-01-01");
myDate.setMonth(myDate.getMonth() + 13);
var answer = moment(myDate).format('YYYY-MM-DD');
我想在 angularjs 中运行它。我按照https://github.com/urish/angular-moment中的说明添加了必要的链接和模块。
我想在我的 angularjs 控制器中运行代码。
angular.module('myApp.controllers', [])
.controller('OwnCtrl', ['$scope', '$http', '$timeout', '$window', 'configuration',
function($scope, $http, $timeout, $window, $configuration)
{
}
问题是我不能var moment = require('moment')
在 angularjs 中调用,这与 node.js 不同。这如何在 angularjs 控制器中完成?