我已经用 HTML5 和 JS (phonegap) 开发了一个应用程序,现在我必须将 JSON 导入本地 SQLite。我有以下代码以便从外部服务器导入
$.ajax({
url: 'path_to_my_file',
data: {name: 'Chad'},
dataType: 'jsonp',
success: function(data){
var count = data.posts.length;
$.each(data.posts, function(i,post){
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],
function(){
bill = bill + 1;
$('#mycontent article').html(bill + '/' + data.posts.length + ' <strong>bill</strong>');
if (--count == 0) {
$('#mycontent article').html('<strong>bill - <font color=green>OK</font></strong>');
}
}
);
});
});
}
});
例如,如果我必须导入本地 json var,我应该如何转换代码
var mybilljson = jQuery.parseJSON( billjson );
进入同一个 SQLite?