gpt4 book ai didi

javascript - 向 PHP 发送 AJAX post 请求

转载 作者:行者123 更新时间:2023-12-01 01:30:02 25 4
gpt4 key购买 nike

这是我使用 JQuery 的 AJAX 代码:

$('#button-upload').on('click', function(){
if( sendSMSArr.length > 0 ){
$.ajax({
url: 'manager/smsendr4.php',
type: 'POST',
dataType: 'json',
data: {'distribution': sendSMSArr},
success: function(response){

}
});
}
});

该请求未在网络中注册。

其次,我不确定如何使用 $_POST 通过 PHP 收集这些数据。

最佳答案

你似乎是一个 php 新手。以下是可用于检索 ajax 数据的代码片段。
这是link关于全局变量 $_POST 的文档我建议您阅读它。另一个有用的link关于php中预定义变量

JS代码:

$('#button-upload').on('click', function(event){
event.preventDefault();
if( sendSMSArr.length > 0 ){
$.ajax({
url: 'manager/smsendr4.php',
type: 'POST',
dataType: 'json',
data: {'distribution': sendSMSArr},
success: function(response){
console.log(response);
}
});
}
});

PHP:

<?php
if(isset($_POST['distribution'])){
# I've added a sanitization filter, but you can omit it if you don't need to pass the data to a database.
$dist = filter_var($_POST['distribution'], FILTER_SANITIZE_STRING);
# put your logics here after you got the distribution $_POST variable value.
}
?>

关于javascript - 向 PHP 发送 AJAX post 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53361456/

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