我有一个输入字段显示在我的ui-select上,我似乎无法让它消失......
我正在使用jhipster(最新版本)angularjs和sprigboot。
angular
.module('incidenteApp', [
'ngStorage',
'tmh.dynamicLocale',
'pascalprecht.translate',
'ngResource',
'ngCookies',
'ngAria',
'ngCacheBuster',
'ngFileUpload',
'ui.bootstrap',
'ui.bootstrap.datetimepicker',
'ui.router',
'infinite-scroll',
// jhipster-needle-angularjs-add-module JHipster will add new module here
'angular-loading-bar',
'lr.upload',
'ngSanitize',
'ui.select'
])
html,以防我在这里遇到一些错误......
<ui-select ng-model="vm.biometrico.provincia" theme="bootstrap" title="Elegir Provincia">
<ui-select-match placeholder="Elegir una provincia">{{$select.selected.provincia}}</ui-select-match>
<ui-select-choices repeat="provincia in vm.provincias._embedded.provincia | filter: $select.search">
<span ng-bind-html="provincia.provincia | highlight: $select.search"></span>
</ui-select-choices>
<ui-select-no-choice>
Discula, no pudimos encontrar lo que estas buscando...
</ui-select-no-choice>
</ui-select>
答案 0 :(得分:0)
修正了,我运行的是与angular1.5.8不兼容的旧版ui-select。