Ajax post-POST数组在服务器端返回空

时间:2013-12-13 20:56:36

标签: javascript php jquery ajax

我有一个js函数,它正在收集数据并将其发送到php文件。

我正在尝试提交一个数组作为帖子的一部分:

function send_registration_data(){

var string = "{username : " + $('#username').val() + ", password : " + $('#pass1').val() + ", level : " + $("#userrole").val() + ", 'property[]' : [";
var c = 0;
$('input[name=property]:checked').each(function(){
    if( c == 0){
        string +="\"" +this.value+"\"";
        c=1;
    } else {
        string +=",\""+this.value+"\"";
    }
});
string+="]}";
$('#input').html( JSON.stringify(eval("(" + string + ")")) );

$.ajax({ url: './php/submit_registration.php',
         //data: { username : $('#username').val() , password : $('#pass1').val() , email : $('#email').val() , level : $("#userrole").val() },
         data: JSON.stringify(eval("(" + string + ")")) ,
         type: 'post',
         success: function(output) {
                  $('#output').html( output );

            }
});
};

在提交时,我的php文件将POST数组返回为NULL。我不确定我在这里做错了什么。

编辑:我尝试将字符串转换为json与天气相同。

此外,输入仅包含文本名称。

2 个答案:

答案 0 :(得分:1)

字符串关键字

请勿使用“string”关键字。

<强> EVAL

Eval是邪恶的 - 谨慎使用它。

严格模式

通过将此行放在代码的开头,确保始终以“严格模式”工作:

'use strict'

构建响应对象

您不必手动粘贴帖子对象。就这样做:

var post = {
    'username': $('#username').val(),
    'password': $('#password').val(),
    'myArray[]': ['item1', 'item2', 'item3']
};

jQuery正确的方式

避免搞乱不必要的语法。

$.post(url, post)
    .done(function(response){
        // your callback
    });

<强>结论

'use strict'
var url = './php/submit_registration.php'; // try to use an absolute url
var properties = {};
$('input[name="property"]:checked').each(function() {
    properties.push(this.value);
});
var data = {
    'username':   $('#username').val(),
    'password':   $('#pass1').val(),
    'level':      $('#userrole').val(),
    'property[]': properties
};

// submitting this way
$.post(url, data)
    .done(function(response) {
        // continue
    })
    .fail(function(response) {
        // handle error
    });

// or this way
$.ajax({
    type: 'POST',
    url: url,
    data: JSON.stringify(data), // you'll have to change "property[]" to "property"
    contentType: "application/json",
    dataType: 'json',
    success: function(response) { 
        // continue
    }
});

答案 1 :(得分:0)

如果你没有使用multipart / form-data,你需要从php://输入,所以,application / json

$myData = file_get_contents('php://input');
$decoded = json_decode($myData);

如果你以json的形式发送它,你的$ _POST变量将继续为NULL,除非你这样做。