我开始使用MEAN.JS并尝试在Angular Bootstrap 示例页面上实现轮播示例。我使用命令yo meanjs创建了一个样板项目,并修改了 home.client.view.html 以删除 jumbotron 并将其替换为以下 html(从 ui bootstrap 示例复制)
<div ng-controller="MyCarouselController">
<div style="height: 305px">
<carousel interval="myInterval">
<slide ng-repeat="slide in slides" active="slide.active">
<img ng-src="{{slide.image}}" style="margin:auto;">
<div class="carousel-caption">
<h4>Slide {{$index}}</h4>
<p>{{slide.text}}</p>
</div>
</slide>
</carousel>
</div>
<div class="row">
<div class="col-md-6">
<button type="button" class="btn btn-info" ng-click="addSlide()">Add Slide</button>
</div>
<div class="col-md-6">
Interval, in milliseconds: <input type="number" class="form-control" ng-model="myInterval">
<br />Enter a negative number to stop the interval.
</div>
</div>
</div>
我添加了一个名为 MyCarouselController 的控制器(文件名carousel.client.controller.js)并从示例中添加了 javascript
angular.module('core').controller('MyCarouselController', ['$scope', 'Authentication',
function($scope, Authentication) {
$scope.myInterval = 5000;
var slides = $scope.slides = [];
$scope.addSlide = function() {
var newWidth = 600 + slides.length;
slides.push({
image: 'http://placekitten.com/' + newWidth + '/300',
text: ['More','Extra','Lots of','Surplus'][slides.length % 4] + ' ' +
['Cats', 'Kittys', 'Felines', 'Cutes'][slides.length % 4]
});
};
for (var i=0; i<4; i++) {
$scope.addSlide();
}
}
]);
在第一次转换(自动或用户单击)后出现问题。轮播变得无响应,开发者控制台中没有显示任何错误消息。
我已验证 ui-bootstrap 也已作为依赖项包含在 config.js 文件中。
我不知道从这里往哪里看,希望有人能指出我正确的方向。我已将该项目的副本推送到 Github,供有兴趣查看它的任何人使用。