将 webSQL 结果存储到 var 以供其他函数使用?
这是代码:
speeddial.storage.findGroupName = function(id) {
speeddial.storage.db.transaction(function(tx) {
tx.executeSql('SELECT * FROM groups WHERE id = ?', [id], function (tx,results){
alert(results.rows.item(0).title);
return FolderName;
},
null);
});
}
function foo(results.rows.item(0).title){...
我希望将警报框中的结果 - results.rows.item(0).title - 存储在变量中并在下一个函数中使用......我对此很陌生,可能无法设置正确的语法。警报框给了我预期的结果:)
Here is the code:
speeddial.storage.findGroupName = function(id) {
speeddial.storage.db.transaction(function(tx) {
tx.executeSql('SELECT * FROM groups WHERE id = ?', [id], function (tx,results){
alert(results.rows.item(0).title);
return FolderName;
},
null);
});
}
function foo(results.rows.item(0).title){...
I want the result which is in the alert box - results.rows.item(0).title - to be stored in a variable and used in the next function... I am new to this, and probably cannot et the syntax right. The alert box gives me the expected result :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用指定的函数名称代替警报引用:
Use the specified function name in place of the alert reference: