我仍然在學習angularjs,嘗試不同的免費在線教程,我在下面的應用程序,但不知道爲什麼它不工作,我認爲這是依賴項,任何人都可以給我一點解釋。角模塊依賴和控制器
我的知識是超級限量
<div ng-app="app">
<span odometer="'200'">
<span odometer="visitors">
<span odometer="visitors" odometer-options="{theme: 'digital', duration: 3000}">
<div ng-controller="MyAngularishCtrl">
Random number : {{AngularishRNGesus}}
</div>
</div>
下面
是我的JS文件
var myApp = angular.module('app', ['ui.odometer']);
app.controller('MyAngularishCtrl', function($scope, $interval) {
$scope.AngularishRNGesus = 0;
function update() {
$scope.AngularishRNGesus = Math.round((Math.random() * 10) * 10);
}
$interval(update, 1000 * 2);
});
如果我刪除依賴「ui.odometer」,那麼控制器的作品,但如果擁有它,那麼控制器榮獲沒有工作,我感到困惑...請幫助 。
https://plnkr.co/edit/JxT2bQltOXwBuexO8Zew –