私はanglejの値を持つhtmlのselectタグを持っています。値を選択するたびに、選択タグは空になります。どうして?それを修正するには?上記のコードでanglejsで値を選択すると、htmlのタグ値が選択されなくなります
$scope.getAll = function(){
$http.post()....
$scope.places = response.data;
};
$scope.getAll();
$scope.sample = function(str){
alert(str);
};
HTML
<select ng-model="val" ng-change="sample(val)">
<option ng-repeat="place in places" value="place.name">{{place.name}}</option>
</select>
、私はそれが私の価値を警告するが、selectタグが空になっselectタグのいくつかの値を選択したときに!
投票アップを使用する代わりにお勧めします。ああ、あなたの4,000ポイントを得ました:) – M98