我正在研究Angular。代码中的Api将json值传递给字符串,其中包含数字和字母。但我的要求是只显示字母并从我的下拉列表中删除字符串中的数字。
我的剧本:
staffService.getBaseBranches()
.success(function(data) {
$scope.baseBranches = data;
})
.error(function(error, status) {
showError(error, status);
notificationFactory.error("Unable to load base branches.");
});
我的HTML:
<div class="form-group">
<label>Branch : <i class="mandate">*</i></label>
<select class="form-control input-md" name='branchName' ng-model="query.branchName" ng-options="branch.branchName as branch.branchName for branch in baseBranches">
<option value="" selected>-- Select Branch --</option>
</select>
<span class="error" ng-show="search_form.branchName.$error.required">Branch is required</span>
</div>
我该怎么做?请帮助我。