gpt4 book ai didi

javascript - 如何使用 Javascript 拦截 POST 数据

转载 作者:行者123 更新时间:2023-11-29 23:28:57 26 4
gpt4 key购买 nike

我正在使用此 javascript 函数将数据发送到我的 php 脚本(通过 POST),然后我使用此信息从我的数据库中检索数据,我想重用在我的 JavaScript 代码中检索到的信息。

这是我的代码:

$(document).on("click", "#validerChoixDeCours", function() {
jQuery.ajax({
type: "POST",
url: 'myFunctions.php',
dataType: 'json',
data: {
functionname: 'proposePA',
arguments: clickedButtons
},
success: function() {
// HERE I would like to inctercept the data that my php script put in myFunctions.php produces and use it to generate content;
}
});
});

所以基本上,当点击按钮 #validerChoixDeCours 时,我的代码将一些数据发送到 myFunctions.php,它生成一个存储在 php 变量中的响应,我想在我的 JS 代码中使用该响应。

预先感谢您的帮助:)

最佳答案

其实很简单!

$(document).on("click", "#validerChoixDeCours", function() {
jQuery.ajax({
type: "POST",
url: 'myFunctions.php',
dataType: 'json',
data: {
functionname: 'proposePA',
arguments: clickedButtons
},
success: function(e) {
e contains the response from the php script
}
});
});

成功的第一个参数包含来自请求的响应。因此,在这种情况下,“e”变量包含您可以使用的输出。

关于javascript - 如何使用 Javascript 拦截 POST 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47991708/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com