这是一个非常奇怪的问题。我修改了sencha touch 2的sql代理,其实我只是修改了一些配置和名称,除了一些console.log之外没有修改代码。当我在chrome中调试它时,执行了createTable的代码,并创建了数据库,但是带有create table的executeSql不起作用。我已经添加了成功和失败回调,但它们没有被执行。
我的意思是这很奇怪,因为原始的 javascript 代码可以正常工作。稍后我将粘贴代码,但我几乎无法想象它发生的原因。
对不起我的英语不好。
原始代码可以工作:
var db = openDatabase("TDD", "1.0", "TDD Database", 5 * 1024 * 1024);
db.transaction(function(tx){
tx.executeSql("CREATE TABLE IF NOT EXISTS Activities " +
"(id INTEGER PRIMARY KEY AUTOINCREMENT, user_id INTEGER, " +
"title TEXT, location TEXT)");
});
Sencha Touch SQL 代理(仅需要的代码):
/**
* PhoneGap proxy.
*/
Ext.define('TDD.proxy.PhoneGap', {
alias: 'proxy.phonegap',
extend: 'Ext.data.proxy.Client',
conf ig: {
/**
* @cfg {Object} reader
* @hide
*/
reader: null,
/**
* @cfg {Object} writer
* @hide
*/
writer: null,
table: null,
database: 'TDD',
columns: '',
uniqueIdStrategy: false,
tableExists: false,
defaultDateFormat: 'Y-m-d H:i:s.u'
},
create: function (operation, callback, scope) {
var me = this,
db = me.getDatabaseObject(),
records = operation.getRecords(),
tableExists = me.getTableExists();
operation.setStarted();
db.transaction(function(transaction) {
if (!tableExists) {
me.createTable(transaction);
}
me.insertRecords(records, transaction, function(resultSet, errors) {
if (operation.process(operation.getAction(), resultSet) === false) {
me.fireEvent('exception', this, operation);
}
if (typeof callback == 'function') {
callback.call(scope || this, operation);
}
}, this);
});
},
createTable: function (transaction) {
var sql = 'CREATE TABLE IF NOT EXISTS ' + this.getTable() + ' (' + this.getSchemaString() + ')';
console.log(sql);
transaction.executeSql(sql, [],
function(tx, results) {
console.log("Success.");
console.log(results);
},
function(tx, errors) {
console.log("Fail.");
console.log(errors);
}
);
// Don't work either.
transaction.executeSql("Create Table item (id integer, TT text)");
this.setTableExists(true);
},
getDatabaseObject: function() {
return openDatabase(this.getDatabase(), '1.0', 'TDD Database', 5 * 1024 * 1024);
}
});