在ajax响应中打印json对象

时间:2016-08-28 08:35:01

标签: jquery json

我使用ajax提交表单并打印回复代码。

这是php响应数组

$response['code'] = 401;
$response['message'] = 'Thank You';
$response['class'] = 'alert-success';
echo json_encode($response);

这是ajax代码

$.ajax({
  dataType: 'json',
  type: 'POST',
  url: '/sellers/php-page',
  data: dataString,
  cache: false,
  success: function(d) {
     console.log(d);
  }
});

console.log(d)的输出

Object { code: 401, message: "Thank You", class: "alert-success" }

现在我必须只打印消息。如何从数组对象中打印/使用单个对象?

1 个答案:

答案 0 :(得分:1)

  success: function(d) {
     console.log(d.message);   // "Thank You"
  }