我有一个从 Web 服务器获得的 XML 变量,我想使用 jquery / javascript 将其插入本地数据库表而不循环(循环非常慢....),
我现在用于插入的代码是:
$(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 变量。
有没有人有这样的例子?
谢谢,