到达此页面时,我正在通过控制器的模型属性加载国家/地区列表。但是我选择的值没有与我的选择绑定。请提供一些解决方法,或者我应该使用 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());
国家列表是我放入模型并将其发送到客户端的哈希图。