ng repeat:用数组填充下拉选项

ng-repeat: populate drop down options with array

本文关键字:选项 填充 数组 repeat ng      更新时间:2023-09-26

我有一个简单的JavaScript对象,如下所示:

$scope.obj = { "'Architect'": ["asdf","d","e","y"]};

我想在选择框中显示'Architect'的值。然而,当我尝试做ng-repeat时,这些单引号让我很反感。

<select>
    <option ng-repeat="row in obj['Architect']" value="{{row}}">{{row}}</option>
</select>

这不会填充选择框,它只是显示一个空的选择框。我认为它将单引号解释为字符串文字,但即使我添加单引号并对其进行转义,它仍然不能按预期工作。我是不是错过了什么?

下面是一个示例plunker:

转义引号如何正确地转义html属性中的引号?

<option ng-repeat="row in obj[&quot;'Architect'&quot;]" value="{{row}}">{{row}}</option>

http://plnkr.co/edit/6xUD3Zg0jxV05b41f2Gw?p=preview

为什么不使用"ng选项"进行选择?把这个锁上AngularJs API:选择

以下是带有外部json 的ng repeat的完整代码

HTML

<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
  <title>datatable using jquery.datatable in angularjs</title> 
  <link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://cdn.datatables.net/1.10.12/css/dataTables.bootstrap.min.css'>
      <link rel="stylesheet" href="css/style.css"> 
</head>
<body>
  <div class="container" ng-app="problemApp" data-ng-controller="validationCtrl">
  <select>
    <option ng-repeat="item in testdata" value="">{{item.name}}</option>
</select>
</div>
  <script src='https://code.jquery.com/jquery-2.2.4.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.5/angular.min.js'></script>
<script  src="js/index.js"></script>
</body>
</html>

index.js

var app=angular.module('problemApp', []);
app.controller('validationCtrl',function($scope,$http){
    $http.get('http://localhost/Dtable_angular/ngrepeatdropdown/test.json').success(function (data) {
                $scope.testdata = data;
                console.log($scope.testdata)
        })

$scope.dataTableOpt = {
   //custom datatable options 
  // or load data through ajax call also
  "aLengthMenu": [[10, 50, 100,-1], [10, 50, 100,'All']],
  };
});

test.json

[{
        "countryId": 1,
        "name": "France - Mainland",
        "desc": "some description"
    },
    {
        "countryId": 2,
        "name": "Gibraltar",
        "desc": "some description"
    },
    {
        "countryId": 3,
        "name": "Malta",
        "desc": "some description"
    }
]