我不明白下面的 responseHandler 函数是如何在提交付款表单后从 API 调用接收响应的。以下是代码的简要摘要:var PaymentThing = function(e) { this["clientCallback"] = e; return { createToken: function() { // HTTP GET URL is generated and then an HTML script element is appended to the page head var a = "https://example.com/securitytoken?creditcard=xxxx?callback=PaymentThing.callback"; var f = document.createElement("script"); f.src = a; document.getElementsByTagName("head")[0].appendChild(f) }, callback: function(e) { this["clientCallback"](e.status, e.results) } }}var responseHandler = function(status, response) { // How does this even work? console.log(response, status);}// Form SubmissionjQuery('#checkout_payment_form').submit(function() { PaymentThing.createToken(responseHandler);}所以我的问题是,responseHandler函数如何接收来自HTTP GET调用的响应?在我看来,HTTP调用甚至没有被进行。我只看到一个URL被添加到HTML脚本元素(使用createToken函数),URL甚至从未被调用/执行(但不知何故?)。另外,当我没有看到(状态,响应)参数被传递到响应处理程序函数调用中时,它们如何传递到响应处理程序函数中?我不明白这里的操作逻辑或顺序,任何人都可以解释一下发生了什么吗?编辑:好的,我想我现在看到了响应处理程序函数如何接收状态和响应参数。我编辑了上面的代码,以显示生成的HTTP URL中有一个回调函数。但是,该URL是如何被调用的?在我看来,它仍然像是惰性的,并且被卡在页面的HTML中并且没有激活。
添加回答
举报
0/150
提交
取消