Angular随记

一:关于Angular的依赖关系
自己的理解,angular中最主要的就是模块,模块是为了复用!!!
1.首先定义一个模块
angular.module(”xxx”,[“1,2,3…”])————其中xxx表示模块名,1.2.3…表示依赖的模块
2.如何引用模块
angular.module(“xxx”)——————-其中xxx表示模块名
例如在项目app.js可以这么定义

(function(
    //这种写法和var app=angular.module('app',['app.system'])区别自己感悟
    'user strict'
    angular.module('app',[
    'app.system'
    ])
))()

我们另一个子模块app.system的定义如下

(function(
    'user strict'
    angular.module('app.system',[
    'ui.router'//等依赖
    ])
))()

所以我们的依赖关系就是app依赖app.system; app.system依赖ui.router这种关系
那么我们在app.system的controller或者配置路由的时候代码如下

(function(
    'user strict'
    angular.module('app.system')
    .config(/**/)
    .controller('xxxx',xxxx)
))()
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值