gpt4 book ai didi

javascript - 使用ajax调用php函数

转载 作者:行者123 更新时间:2023-11-28 08:16:44 26 4
gpt4 key购买 nike

嗨,我正在使用 ajax 来执行发布请求。我想我想做的是在 php 文件中调用一个函数,但我有点困惑是否以及如何执行此操作,有人能对此有所了解吗?这是我的 js 文件中的内容:

  function callAjaxAddition2() {
arguments0 = jQuery('#code').val();
$.ajax({
type: "POST",
url: file.php",
data: {code: arguments0},
success: function(data) {
request( $posted )
}
});
return false;
}

“request”是 php 文件中的一个函数。

更新我想我应该能够使用这个来触发我需要的东西:http://docs.woothemes.com/document/wc_api-the-woocommerce-api-callback/如果我将 url 放入 url 字段,但这似乎不起作用,我如何在 ajax post 中使用回调?

最佳答案

首先修复此行缺少的开头引号 file.php"

无法通过 AJAX 调用 PHP 函数,但可以在需要调用时触发,以下演示相同:

在您的 PHP 中,您的代码将是:

if(isset($_POST['code'])){
#'code' here is the identifier passed from AJAX
request($_POST['code']);
}

一旦您的函数被调用,执行必要的操作并将输出返回到 AJAX,您可以使用您设置的 data 参数来查看从 PHP 发回的输出:

success: function(data) {
alert(data); //contains the data returned from the
//PHP file after the execution of the function
}

关于javascript - 使用ajax调用php函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23491634/

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