这是plunker
我正在尝试重现此处显示的示例
我没有看到相同的输出,我错过了什么?
您没有指定 ng-app 模块名称,您应该能够在控制器中初始化日历。因此,像这样修改模板以链接 AngularJS 模块:
<html ng-app='angularjs-starter'>
<body ng-controller="MainCtrl">
在控制器中,执行:
var app = angular.module('angularjs-starter', ['$strap.directives']);
app.controller('MainCtrl', function($scope, $window, $location) {
$scope.datepicker = {date: new Date("2012-09-01T00:00:00.000Z")};
});
因此,尽管您可能需要修复 css,但您将能够看到正在工作的日历 :)