angular.js - 关于ng-option的用法
PHPz
PHPz 2017-05-15 17:07:55
0
2
879

数据是这样的

那我如果用ng-option怎么循环出来这些数据

现在代码是这样的:

<p class="am-form-group">
            <label class="am-u-sm-3 am-u-md-3 am-u-lg-2 am-form-label am-text-right">导演国籍:</label>
            <p class="am-u-sm-9 am-u-md-9 am-u-lg-10">
                <select id="direct-country" class="am-radius max-width-250" ng-model="selected_cn_0" name="film[nationality]">
                    <option value="{{$index}}" ng-repeat="country in countrys_0">{{country}}</option>
                </select>
                <span class="am-form-caret"></span>
            </p>
        </p>

控制器:

$scope.countrys_1 = data.nationality;
$scope.selected_cn_1 = data.nationality[46];

我想让option的value是 下标,不知道怎么改,默认显示为第46条数据的值

PHPz
PHPz

学习是最好的投资!

全部回复(2)
我想大声告诉你

html:

<select ng-model="selected_cn_1" ng-options="value for (key,value) in countrys_1"></select>

js

$scope.countrys_1 = data.nationality;
$scope.selected_cn_1 = data.nationality[46];//通过ng-model和select绑定

ng-options的用法

仅有的幸福

雷雷


转换为数字

雷雷
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板