摘要:
ng-repeat指令要点 1,基本格式,这里不作过多说明,需要的话查看文档 {{$index}}{{item.someProperty}}{{item.someFunction()}} 其中someXXX代表需要相应替换内容。$index是ng-repeat 内置变量,这是唯一一个数值型... 阅读全文
摘要:
单个参数调用angular.module(),用来取得该模块而不是定义新的这样就可以在不同的地方定义app的controller而不用通过全局变量angular.module('myapp').controller('xxController',function(){});在controller中的... 阅读全文