这 2 行代码是什么意思(*来自教程)?

发布于 2024-12-25 05:22:06 字数 577 浏览 0 评论 0原文

我试图理解本教程中调用函数的方式 http://docs.phonegap.com/en/1.3.0 /phonegap_storage_storage.md.html#SQLResultSetList

(*我尝试用谷歌搜索回调函数,但仍然没有得到这些)

  1. 最后有 db.transaction(populateDB, errorCB, successCB); 这是否意味着它将调用函数 populateDB ,如果失败则调用 errorCB ,如果成功则调用 successCB ?或者函数调用的顺序是什么?

  2. 然后上面有tx.executeSql('SELECT * FROM DEMO', [], querySuccess, errorCB); [] 是什么意思?再说一遍,现在 querySuccess 调用的函数序列在 errorCB 之前(与 Q1.case 不同)?

I am trying to understand the way functions are called in this tutorial
http://docs.phonegap.com/en/1.3.0/phonegap_storage_storage.md.html#SQLResultSetList

(* I tried googling about call back function but still don't get these )

  1. at the end there is db.transaction(populateDB, errorCB, successCB); does that mean it will call function populateDB and if it fails it call errorCB and if it success it call successCB ? or what are the sequence of the function calls ?

  2. Then upper to that there is tx.executeSql('SELECT * FROM DEMO', [], querySuccess, errorCB);
    What does [ ] mean ? And again what is the sequence of function called as now querySuccess is before errorCB ( unlike the Q1. case ) ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回忆那么伤 2025-01-01 05:22:06
  1. 是的,它会执行 populateDB,然后成功时执行 successCB,错误时执行 errorCB
  2. [] 表示空数组,从它们的名称来看,成功时执行 querySucces,出错时执行 errorCB,

但请检查这些函数的 api 文档( 交易executeSql) 查看每个参数的用途,它应该告诉您目的每个参数的

  1. Yes it will execute populateDB, then successCB on success, and errorCB on error
  2. [] means empty array, and again by their names it looks like querySucces will be execute on success, and errorCB on error,

but check the api documentation for those functions (transaction and executeSql) to see what each argument is for, it should tell you the purpose of each argument

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文