0

このページに到達している間、コントローラーからモデル属性を介して国リストをロードしています。しかし、私が選択している値は私の選択にバインドされていません。回避する方法を提供してください。または、ng-options を使用する必要があります。

<div class="paddingTopBtm2">
    <label class="lblAlign">Country :<span class="required">*</span></label>
    <span> <form:select name="country" path="" id="country" 
                class="searchBoxWidth" ng-model="country">
                <form:options items="${countryList}" />
        </form:select>
    </span> <br />
</div>

model.put("countryList", ctrl.getCountryList());

国のリストは、モデルに入れてクライアント側に送信するハッシュマップです。

4

2 に答える 2

0
<label>County: </label><span><select ng-model="country" ng-options="country in countryList"/> </span>
于 2014-08-27T13:33:14.363 に答える