ajax返回的数组为什么提示undefined?

试了两天了都没解决!哪位大神可以帮忙解决下,急,在线等!ajax返回的数组为什么alert 为undefined?注:readComment.php是确定可以和数据库链接并取到正确的结果数组的,其他方法试过,用了ajax就不行了。。。

Ajax function:

$('#getComments').click(function () {
var recipe=document.title;
var session_username = '<%=session.getAttribute("username")%>';

$.ajax({
type: 'POST',
url: "readComment.php",
data: {"recipe": recipe},
dataType: 'json',

success: function(data){

                                         alert (JSON.stringify(data).username);// alert undefined!

},

error:function(){
alert("error");
}
});

});

php file: readComment:

<?php
/**

  • Make sure the user can read the comments.

*/
require_once './resources/fragments/start.php';
use TastyRecipesControllerSessionManager;
$recipe = $_POST["recipe"];

$controller = SessionManager::getController();
$result_array = $controller->getComments($recipe);

echo json_encode($result_array);

阅读 3.5k
4 个回答

① 你network打开有返回数据吗?如果返回了数据把数据格式截图出来
JSON.stringify(data).username JSON.stringify是把object序列成字符串,这样还怎么能用.去访问,试试 JSON.parse(data).username

新手上路,请多包涵

建议看一下markdown用法。。你代码贴的让我蛋疼。
JSON.stringify(data)这个方法是把data转换为字符串,既然已经是字符串了,那就无法通过对象的方式把属性调出来。

https://developer.mozilla.org...
图片描述

$.ajax({
    type: 'POST',
    url: "readComment.php",
    data: {"recipe": recipe},
    dataType: 'json',
    success: function(data){
        var obj = JSON.parse(data);
        console.log(obj);
        if(obj){
            console.log(obj.username);
        }
    },
    error:function(){
        console.log("error");
    }
});
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题