angularJs模版注入的两种方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularJs模版注入的两种方式相关的知识,希望对你有一定的参考价值。
一,声名式注入
var myApp = angular.module("myApp",[]);//这里数组为空
myApp.controller("indexCtrl",[‘$scope‘,function($scope){ //如果想用混淆,必须使用中括号中声名注入参数
}])
二,直接注入
app.js
angular.moudle("myApp",[
‘ngRoute‘,
‘myApp.controllers‘
]);
controllers.js
angular.module("myApp.controllers",[‘$scope‘,function($scope){ //如果想用混淆,必须使用中括号中声名注入参数
}]
以上是关于angularJs模版注入的两种方式的主要内容,如果未能解决你的问题,请参考以下文章