Я в мобильном приложении. я использую ajax-вызовы для получения данных с веб-сервера с этим кодом
$.ajax({
url: 'http://www.xxxxxxxxxxxxxxxx',
data: {name: 'Chad'},
dataType: 'jsonp',
success: function(data){
$.each(data.posts, function(i,post){
$.mobile.notesdb.transaction(function(t) {
t.executeSql('INSERT into bill (barcode, buildingcode, buildingaddress, flatname, flatdescription, entryseason, period, amount, pastpayments, todaypayments, receiptno) VALUES (?,?,?,?,?,?,?,?,?,?,?);',
[post.Id, post.Code, post.Address, post.Name, post.Description, post.EntrySeason, post.Period, post.Revenue, post.PastPayments, post.todaypayments, post.receiptno],
//$.mobile.changePage('#page3', 'slide', false, true),
null);
});
});
},
complete: function(){test = 1;}
});
Я хочу, чтобы полная функция выполнялась после того, как все данные вставлены в sqlite ...
как я могу это сделать ???
пожалуйста, совет