我在运行grunt服务时遇到了角度和自耕农的问题,这会缩小并将我的角度应用程序输出到我的dist目录进行制作。在我的本地主机上运行我的应用程序时,一切似乎都运行良好,但在进行构建之后发生了一些事情,目前我还不清楚。任何帮助将不胜感激。
这是我在项目中引入的导致问题的控制器:
var myPlayer
angular.module('myapp')
.controller('ShowCaseTabCtrl', function ($scope) {
$scope.tabs = [
{
title:"Video",
content:'templates/showcased-video.html',
},
{
title:"Gallery",
content:'templates/showcased-gallery.html',
}
];
// here I am firing this method on ng-include onload to ensure video js
// is being properly instantiated
$scope.initVideo = function() {
videojs('showcase-video', {
'controls': true,
'autoplay': false,
'preload': 'auto',
'poster': 'images/posters/poster.jpg'
}, function(){
myPlayer = this;
myPlayer.dimensions(900, 600);
myPlayer.poster('images/posters/poster.jpg');
myPlayer.src([
{ type: 'video/mp4', src: 'video/myvideo.mp4' },
{ type: 'video/ogg', src: 'video/myvideo.ogv' }
]);
});
}
});
这是我对上面控制器的看法:
<section ng-controller="ShowCaseTabCtrl">
<div class="mod-wrap full-bleed">
<tabset>
<tab ng-repeat="tab in tabs" heading="{{tab.title}}" content="{{tab.content}}" active="tab.active">
<ng-include src="tab.content" onload="initVideo()"></ng-include>
</tab>
</tabset>
</div>
从yo-angular generator运行grunt发送后出现的错误:
Error: [$injector:unpr] Unknown provider: aProvider <- a
答案 0 :(得分:3)
原因可能是你的js文件缩小了。
在声明控制器,服务和过滤器时尝试使用数组表示法。
e.g。
controller('ShowCaseTabCtrl', ['$scope', function ($scope) {
// Your code here
}]);
该引用位于Angular Phonecat教程的 5th step 中。