我有一个XML变量,我从Web服务器获取,我想使用jquery / javascript将其插入本地db表而不循环(循环非常慢......),
我现在用于插入的代码是:
$(xx).find("Customers").each(function () {
var $this = $(this),
CustID = $this.find("CustID").text(),
CustName = $this.find("CustName").text(),
City = $this.find("City").text(),
PhoneNum = $this.find("PhoneNum").text()
// guid = $this.find("guid").text(),
// postid = $this.find("postid").text(),
// url = $this.find("enclosure").attr('url');
i++;
db.transaction(function (tx) {
tx.executeSql('INSERT INTO Customers (CustID, CustName, City, PhoneNum) VALUES (?,?,?,?)', [CustID, CustName, City, PhoneNum]);
});
});
XX是一个xml变量。
有没有人有这样的例子?
谢谢,