2016年3月17日
javascript
angularjs
angularJs特性?
MVC模式
模块系统
指令系统
依赖注入
双向数据绑定
angularJs的作用域
$scope
$rootScope
依赖注入
服务
function Aaa($scope ,$rootScope){//依赖注入,形参不能改
$scope.name='hello world!!';
$rootScope.txt="nihao";//全局变量,
}
function Bbb($scope){
$scope.name='Bbb hello world!!';
}angularJs的指令系统
ng-app
初始化一个angularjs应用程序
ng-controller
定义控制器
angularJs的双向数据绑定
MVVM
$timeout
有刷新功能
ng-click
click事件
ng-model
绑定数据
过滤器
currency
$watch
监听数据变化
三个参数
第三个为true时可以监听一个整体,否则是单个。
Last updated
Was this helpful?