Angular ng-repeat 对象和数组遍历实例
更新时间:2016年09月14日 09:14:03 投稿:lqh
这篇文章主要介绍了Angular ng-repeat对象和数组遍历的相关资料,并附代码示例,需要的朋友可以参考下
直接上代码
<!DOCTYPE html> <html> <head> <meta name="description" content="[Ngrepeat in obj and arr]"> <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.14/angular.min.js"></script> <meta charset="utf-8"> <title>JS Bin</title> </head> <body> <div ng-app="myApp"> <div ng-controller="testCtrl">{{test1}} <div> <label for="" ng-repeat="item in list1">{{item.id}} -- {{item.value}}</label> <p></p> <label for="" ng-repeat="(key, value) in obj1">{{key}} -- {{value}}</label> <p> </p> 对于obj遍历的话 会根据key的首字母排序 <label for="" ng-repeat="(key, value) in obj2"> {{key}} -- {{value.text}} -- {{value.value}} </label> </div> </div> </div> </body> </html>
JS
var app = angular.module(‘myApp‘, []); app.controller(‘testCtrl‘, function ($scope) { $scope.test1 = ‘tt‘; $scope.list1 = [{ id: ‘1‘, value: ‘seti‘ }, { id: ‘2‘, value: ‘kuma‘ }, { id: ‘3‘, value: ‘cent‘ }]; $scope.obj1 = { ‘1‘: ‘seti‘, ‘2‘: ‘kuma‘, ‘3‘: ‘cent‘ }; $scope.obj2 = { ‘ins‘:{text:‘seti‘, value:‘s1‘}, ‘abc‘:{text:‘kuma‘, value:‘s2‘}, ‘coln‘:{text:‘cent‘, value:‘s3‘} }; });
相关文章
AngularJS中controller控制器继承的使用方法
这篇文章主要介绍了AngularJS中controller控制器继承的使用方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-11-11AngularJS入门教程之 XMLHttpRequest实例讲解
本文主要讲解 AngularJS XMLHttpRequest,这里给大家整理相关资料并提供实例代码,有需要的小伙伴参考下2016-07-07Angular依赖注入optional constructor parameters概念
这篇文章主要为大家介绍了Angular 依赖注入领域里 optional constructor parameters 的概念及使用,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-11-11
最新评论