目前正在开发一个角度应用程序,我在文件夹 App
下有我的应用程序特定角度模块。
使用Visual Studio扩展 - Web Essential 2012 ,为 {下的app.all.js.bundle
文件中的本地角度模块和相关文件(控制器,指令,服务)创建了一个javascript包文件{1}} 文件夹。
结构现在看起来像:
现在,当我在我的App
应用程序中使用app.all.js
时,对我来说工作正常,但是当更改为`app.all.min.js时,我收到以下错误:
未捕获错误:[$ injector:modulerr] http://errors.angularjs.org/1.5.5/ $ injector / modulerr?p0 = app& p1 =错误%3A%20%... 0g%20(http%3A% 2F%2Flocalhost%3A59405%2FScripts%2Fangular.min.js%3A39%3A222)angular.js:38
使用index.html
时,我将app.all.min.js
切换为angular.js
。
我还需要做更多其他事吗?
答案 0 :(得分:0)
确保正确注入依赖服务和控制器。
myApp.controller('GreetingController', ['$scope', function($scope) {
$scope.greeting = 'Hola!';
}]);