1
我調用API並返回綁定響應$ionicView.beforeEnter
。但是,輸入視圖時,有時會加載視圖,但數據在數秒後纔會綁定,尤其是在網絡連接不良的情況下。這個問題怎麼解決?離子視圖轉換閃爍問題
這是因爲我的API調用是異步的嗎?
angular.module('app').controller(function($scope, ApiMethod) {
$scope.$on("$ionicView.beforeEnter", function(event, data){
ApiMethod.GetFormInfo().$promise.then(function (res) {
$scope.res = res;
}, function (errRes) {
})
});
});
<ion-content>
<form name="form">
<div class="list">
<label class="item item-input">
<input type="text" placeholder="First Name" ng-model="res.firstName">
</label>
<label class="item item-input">
<input type="text" placeholder="Last Name" ng-model="res.lastName">
</label>
<label class="item item-input">
<textarea placeholder="Comments" ng-model="res.comments"></textarea>
</label>
</div>
<button type="submit">Submit</button>
</form>
</ion-content>
提供您的控制器和視圖代碼。我有一個解決方案,但需要你的代碼來實現它。 – theblindprophet
@theblindprophet您好我已更新我的問題中的代碼 – vincentsty