如何将 AngularJS 代码拆分为单独的文件


一切

正常,但是当我尝试将脚本与外部js文件分开时,AngularJS没有运行。

这是我的脚本:

<script>
angular.module('MyApp', ['ngMaterial', 'ngMessages', 'material.svgAssetsCache'])
.controller('AppCtrl', function ($scope) {
    $scope.isDisabled = true;
    $scope.UnitReport = function(){
        alert("aa");
    }
})
//this is just a part of script
;
</script>

我分开了,就像:

.controller('AppCtrl', function ($scope) {
    $scope.UnitReport = function(){
        alert("aa");
    }
})

但没有用。

另外,我像这样分开:

angular.module('MyApp', ['ngMaterial', 'ngMessages', 'material.svgAssetsCache'])
.controller('AppCtrl', function ($scope) {
    $scope.UnitReport = function(){
        alert("aa");
    }
})

但没有再次工作。

怎么可能分离这个AngularJS?

PS:外部文件链接和功能没有任何错误。

此行创建模块MyApp ,因为[...]部分:

angular.module('MyApp', ['ngMaterial', 'ngMessages', 'material.svgAssetsCache']);

当您要为此模块创建控制器时,您需要参考它。在您的应用中,您可以直接在模块声明之后执行此操作:

angular.module('MyApp', [...]).controller(...);

因此,您可以在一行中创建模块和控制器


现在你需要的是分离它,所以,首先创建你的模块:

angular.module('MyApp', ['ngMaterial', 'ngMessages', 'material.svgAssetsCache']);

在另一个文件中,使用此模块创建控制器,并使用以下合成器:

angular.module('MyApp').controller(...); /* There are no [] anymore -> not a mod creation */

是的,可以在不同的js上分隔文件。

使用以下代码实例化模块

angular.module('MyApp', ['ngMaterial', 'ngMessages', 'material.svgAssetsCache'])

为了获取现有模块并向其添加新控制器,您应该只使用一个参数,即模块的名称。

angular.module('myApp').controller(/*.. Controller code ..*/)

相关内容

  • 没有找到相关文章

最新更新