7

我需要将名为“msg”的json字符串中的变量存储在我的数据库中,但我无法使用 $msg = $_POST['msg']; 我如何正确捕捉它?

此外,我想直接在网页上回应 $msg 的内容。

HTML

<div id="addCommentContainer">
    <form id="addCommentForm" action="">
        <textarea name="msg" id="msg" cols="82" title="Your comment" rows="2">Your comment...</textarea>
        <br />
        <input type="text" name="author" title="name" value="<?php echo $_SESSION['username']; ?>" id="author" />
        <br />
        <div id="personal">
            <input type="text" name="city" id="city" title="city (optional)" value="" />
            <br />
            <input type="text" name="email" id="email" title="e-mail (optional)" value="" />
            <br />
            <input type="text" name="url" id="url" title="website (optional)" value="" />
            <input type="hidden" id="cam_id" class="hd" name="cam_id" value="<?php echo $cam_id ?>" />
        </div>
        <input type="submit" id="submit" value="Comment" />
    </form>
</div>

JavaScript

//if submit button is clicked
$('#submit').click(function () {
    //start the ajax
    $.ajax({
        //this is the php file that processes the data 
        url: "/comment/insert.php",
        type: "POST",
        data: $("#addCommentForm").serialize(),
        contentType: "json",
        //success
        success: function (html) {
            //if returned 1/true (process success)
            if (html == 1) {
                //show the success message
                $('.done').fadeIn('slow');
                //if process.php returned 0/false (send mail failed)
            } else alert('Sorry, unexpected error. Please try again later.');
        }
    });
    //cancel the submit button default behaviours
    return false;
});

PHP

 $msg = $_POST['msg'];
//  echo $msg;
 $author = $_POST['author'];
 $email = $_POST['email'];
 $url = $_POST['url'];
 $city = $_POST['city'];




    // include ("/home/sionvalais/domains/skiweather.eu/public_html/v3/functions/strip.php");

    if ($cam_id>1) {

    if ($author=='NAME') {
    $author='Anonymous';
    }

    $host = gethostbyaddr($ip);
    // mysql_query ("set character_set_results='utf8'");
    mysql_query("INSERT INTO sv_review (author,email,msg,cam_id,url,lud)
                    VALUES (
                        N'".$author."',
                        '".$email."',
                        N'".$msg."',
                        '".$cam_id."',
                        '".$url."',
                        NOW()
                    )");
     }
4

6 回答 6

3

据我所知,contentType属性的默认值为"application/x-www-form-urlencoded; charset=UTF-8",这在大多数情况下都可以。

但似乎data您发送到服务器的不是 JSON 对象,设置contentType不会将数据转换为 JSON 对象,它只是声明数据的类型。

因此,如果data只是名称/值对的序列化,请删除并重contentType: "application/json",试。

如果它是有效的 JSON 类型,则在服务器上解码发布的 JSON 对象,使用:$array = json_decode($json, true);


访问 JSON 对象

您可以按照以下方法在服务器上获取 JSON 对象:

$json = @file_get_contents('php://input');
$array = json_decode($json, true);

// See what happens
print_r($array);
于 2013-06-16T12:01:31.550 回答
1

使用必须将数据字符串化为 JSON: JSON.stringify($("#addCommentForm").serializeArray())$("#addCommentForm").serialize()不生成 JSON。

于 2014-01-15T16:13:49.817 回答
1

$POST['msg'] 应该是 $_POST['msg']

还要输出您的 POST 变量,以便您可以检查它们,请使用:

echo print_r($_POST);
于 2013-06-16T11:41:43.767 回答
0

.serialize 形成一个可以发送到服务器的查询字符串。它不会创建 json,请提醒 $("#addCommentForm").serialize() 您应该看到查询字符串而不是 json,因此请删除设置 contentType: "application/json"$.ajax 然后您应该能够$_POST['msg']在 php中获取 msg

于 2013-06-16T13:27:39.217 回答
0

不使用: contentType: "json"

这是一个帖子,对吗?所以,它将使用:

contentType: "multipart/form-data" 

或者

contentType: "application/x-www-form-urlencoded"

或者只是为了简化不要使用某人。去掉任何一个contentTypedataType,jQuery默认选择一个,因为类型是POST。

于 2015-04-09T14:47:45.527 回答
0

试试这个改变 -

//if submit button is clicked
$('input#submit').click(function () {
//start the ajax
$.ajax({
    //this is the php file that processes the data 
    url: "/comment/insert.php",
    //GET method is used
    type: "POST",
    data: $("form#addCommentForm").serialize(),
    dataType: "application/json",
    //Do not cache the page
    cache: false,
    //success
    success: function (html) {
        //if returned 1/true (process success)
        if (html == 1) {
            //hide the form
            $('.form').fadeOut('slow');
            //show the success message
            $('.done').fadeIn('slow');
            //if process.php returned 0/false (send mail failed)
        } else alert('Sorry, unexpected error. Please try again later.');
    }
});
//cancel the submit button default behaviours
return false;

});

于 2013-06-16T11:52:25.010 回答