提案リストを含む編集入力があるシナリオがあります。ng-change でエントリを実行すると、関連する提案とともにリストが表示され、データが利用できない場合は例外が表示されます。しかし、クロムでは、検索(ng-change)自体がないと、入力のあるリストに「データ例外なし」と表示されるという問題があります
私はこのようなものを持っています:
<div ng-show="show on a condition to edit">
<input ng-change="callForservicetoDisplayList()" ng-model="enteredValue"/>
<ul ng-show="only when callForservicetoDisplayList function returns value">
<li ng-repeat="outputFromthe callForservicetoDisplayList"></li>
</ul>
</div>
ここでは、リストは最初の編集時にクロムでそれ自体の前に表示され、2 回目は正常に動作します!