当前位置:Gxlcms > html代码 > 关于JS回掉函数的使用_html/css_WEB-ITnose

关于JS回掉函数的使用_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:15人阅读

this.query = function(callback){
db.transaction(function (tx) {
tx.executeSql("select * from transaction_record", [],
function (tx, results) {
len = results.rows.length;
if(len>0){
for (i = 0; i < len; i++){
var row = results.rows.item(i);
console.log('id: '+row.id);
console.log('name: '+row.name);
}
if(typeof(callback) == 'function') {callback(results.rows)}
}else{
if (typeof(callback) == 'function') {callback(false)} //没有数据
}
},function (tx, error) {
return false;
console.log('查询失败: ' + error.message);
});
});
}

如上面代码所示:如何调用上面的方法获取返回值???


回复讨论(解决方案)

xxxx.query(function (rows){
// 这里用rows获取返回值
});

人气教程排行