AngularJS基础
1.ng-model绑定input元素
2.ng-repeat遍历集合
$index
id
name
salary
{{$index}}
{{item.id}}
{{item.name}}
{{item.salary}}
3.ng-click等事件
Click
Dblclick
{{over}}
4.orderBy、limitTo、filter等过滤器
$index
id
name
salary
{{$index}}
{{item.id}}
{{item.name}}
{{item.salary|currency}}
$index
id
name
salary
{{$index}}
{{item.id}}
{{item.name}}
{{item.salary}}
5.自定义过滤器
{{filterdata|myfilter}}
6.ng-hide/show隐藏与显示
toggle
内容的隐藏与显示
7.ng-include引入其他文件文本
8.$http异步http请求/jq的混用/$apply的绑定
{{postback.postdata}}
search
HttpPost
HttpPost2
9.自定义service
MyService