尝试在websql中创建表时出现以下错误。
SQLTransaction': Iterator getter is not callable
在版本低于60的Chrome中工作正常。如何解决此问题?
示例代码是
var db = openDatabase('mydb', '1.0', 'Test DB', 2 * 1024 * 1024);
db.transaction(function (tx) {
tx.executeSql('CREATE TABLE IF NOT EXISTS LOGS (id unique, log)');
});