私は別のWebサービスからいくつかのjsonデータを表示する小さなアプリケーションを持っています、私のコードはhttp://play.ionic.io/app/44e0a65d2252です。 2番目のURLには注意が表示されません。何が間違っていますか?選択オプションにデータが表示されないのはなぜですか?
ありがとうございました。
JS:
this.showSelectValue = function(mySelect) {
$http.get("http://www.stcp.pt/pt//itinerarium/callservice.php?action=linedirslist&lcode="+mySelect)
.success(function (datadir){
self.direcoes = datadir.records;
DataStore.direcoes = self.direcoes;
})
.error(function(error){
DataStore.direcoes.length = 0;
});
HTML:
<p>Selecione o sentido:</p>
<ion-refresher pulling-text="Pull to refresh..." on-refresh="homeCtl.showSelectValue()">
</ion-refresher>
<select>
<option ng-repeat="direcao in StopAsCtrl.direcoes" value="{{direcao.dir}}">{{direcao.descr_dir}}</option>
</select>
私はあなたのsugestionを変更してもまだ動作していないことを証明できます。http://play.ionic.io/app/44e0a65d2252 – user3332475
私の答えはあなたのために更新されました。 – thepio