我显示基于数据并基于属性的网格框"类型"
我试图使用ng-repeat循环并加载基于"类型"
的模板例如我们有类型1,2,3,4和html文件,如1.html,2.html,3.html,4.html
基于"类型"加载模板网址的最佳方法是什么?值,
答案 0 :(得分:0)
这样做的最好方法是使用$ routeProvider,如果我正确地理解了你的问题:
$routeProvider
.when('/1', {
templateUrl: '1.html',
controller: 1Ctrl
}).when('/2', {
templateUrl: '2.html',
controller: 2Ctrl
}).when('/3', {
templateUrl: '3.html',
controller: 3Ctrl
}).when('/4', {
templateUrl: '4.html',
controller: 4Ctrl
}).otherwise({redirectTo: '/1'})
编辑是的,我理解符号名称不能以数字开头,但是这是有问题的OP代码规范。