你好我想用jQuery ajax将多个数据发布到php文件但是当我执行该函数时它没有重新调整而且php也没有获取数据
我的功能如下:
function sendForm(){
jQuery.ajax({
url: <?php echo $path; //this the url where the php file is ?>,
type: 'POST',
data: {
addressOne: jQuery('#Form #table .key :input').serialize(),
addressTwo: jQuery('#Form #table_2 .key :input').serialize(),
additionalData: jQuery('#Form #More :input').serialize(),
preloaded: <?php echo serialize($array); ?>,
action: 'sendIt'
},
async: false,
cache: false,
success: function(data){
alert(data); //or console.log(data);
}
});
}
在php中我做了类似的事情:
<?php
function handleData() {
parse_str($_POST['addressOne'], $arrayOne);
parse_str($_POST['addressTwo'], $arrayTwo);
parse_str($_POST['additionalData'], $arrayThree);
$preloaded = unserialise($_POST['preloaded']);
//than do some stuf here for example print_r all...
}
if(isset($_POST['action']) && !empty($_POST['action'])) {
$action = $_POST['action'];
switch($action) {
case 'sendIt' : handleData();
break;
//etc...
}
}
?>
我不知道我做错了什么?是否有更好的方式发布多个数据?
如果我只使用一个数据,比如我正在序列化整个表单并且不发布序列化的php数组而不是工作正常,但我想使用这四个单独的数据。
答案 0 :(得分:2)
您使用url
ulr
考虑为您的浏览器使用一个插件,例如Web Developer,我很确定它会收到错误,您不需要在这里询问。
修改:如果您仍然遇到问题,请使用alert
验证您要发送的数据,验证您的php
脚本是否符合您的要求通过从浏览器手动导航到它,因为您提供了success
回调,任何您不是async
的原因等等......验证所有内容
答案 1 :(得分:1)
你在ajax函数中输了一个错误,
url: <?php echo $path; ?>, //needs to be url, not ulr
您也不需要serialize
文本字段中的值。就这样做,
jQuery.ajax({
url: <?php echo $path; //this the url where the php file is ?>,
type: 'POST',
data: {
addressOne: $('#Form #table .key :input').val(),
addressTwo: $('#Form #table_2 .key :input').val(),
additionalData: $('#Form #More :input').val(),
preloaded: <?php echo serialize($array); ?>,
action: 'sendIt'
},
async: false,
cache: false,
success: function(data){
alert(data); //or console.log(data);
}
});