为什么我看不到jquery post从PHP返回的JSON数据?

时间:2022-10-07 17:19:33

I'm making a jquery post call like so:

我做了一个jquery post调用:

   var t1 = $("#form").serialize();

    $.ajax({
        type: "POST",
        url: "save_test.php",
        data: t1,
        cache: false,
        success: function(data){

            if (data.st) {
                alert("Success");
            }
            else if (data.error) {
                alert("Error");
            }                
        }
    });

My PHP Looks like this for my error test:

在我的错误测试中,我的PHP是这样的:

$res = new stdClass();

$res->error = 'ERROR SEEN';
echo json_encode($res);
exit();

Why can I not access my json encoded data returned from PHP? I would expect this to trigger my data.error alert.

为什么我不能访问从PHP返回的json编码数据?我希望这会触发我的数据。错误警报。

1 个解决方案

#1


6  

use datatype:json in jquery code

使用数据类型:jquery代码中的json。

or you can use

或者您也可以使用

var d=$.parseJSON(data)

then use d.st

然后使用d.st

#1


6  

use datatype:json in jquery code

使用数据类型:jquery代码中的json。

or you can use

或者您也可以使用

var d=$.parseJSON(data)

then use d.st

然后使用d.st