1
ここには世界の都市の私のjsonファイル:google drive linkがあります。角度ui-selectで大きなリストをロードしないでください
とここに私のhtmlコードは次のとおりです。
<div class="form-group">
<label class="control-label">
CITY
</label>
<ui-select name="city" ng-model="myModel.city" theme="selectize" >
<ui-select-match placeholder="{{ 'placeholders.project.city' | translate }}">
{{$select.selected}}
</ui-select-match>
<ui-select-choices repeat="r in selectedcity | filter: $select.search">
<div ng-bind-html="r | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
</div>
いくつかの国のリストがロードされていない理由は? jsonファイルの問題ですか?またはいくつかの国が都市の大きなリストを持っているからですか?これは、それがui-selectの制限を超えているからですか? 一部の国ではリストが読み込まれますが、一部の国ではリストが読み込まれません。
あなたのコードでJSFiddle https://jsfiddle.netを提供していただけます。ありがとう。 – tomepejo