是否可以仅将angular-repeat指令用于angularjs而不使用Ionic? 该指令可在https://github.com/driftyco/ionic/blob/master/js/angular/directive/collectionRepeat.js获得。
谢谢!
答案 0 :(得分:2)
是的。但不是在10秒内:))
首先,将指令文件包含到项目中,并对其进行转换(L135):
IonicModule
.directive('collectionRepeat', ...
进入这个:
angular.module('yourModuleName')
.directive('collectionRepeat', ...
然后,复制collectionRepeat
$collectionRepeatManager
和$collectionDataSource
的两个离子依赖关系,重复相同的修改。
你应该完成。