40

我一直在用这个把头撞到一堵砖墙上,我在 stackoverflow 上尝试了很多解决方案,但找不到一个有效的解决方案!

基本上,当我发布我的 AJAX 时,PHP 返回 JSON,但 AJAX 显示未定义而不是值:

JS

  /* attach a submit handler to the form */
  $("#group").submit(function(event) {

  /* stop form from submitting normally */
  event.preventDefault();

  /*clear result div*/
  $("#result").html('');

  /* get some values from elements on the page: */
  var val = $(this).serialize();

  /* Send the data using post and put the results in a div */
  $.ajax({
      url: "inc/group.ajax.php",
      type: "post",
      data: val,
  datatype: 'json',
      success: function(data){
            $('#result').html(data.status +':' + data.message);   
            $("#result").addClass('msg_notice');
            $("#result").fadeIn(1500);           
      },
      error:function(){
          $("#result").html('There was an error updating the settings');
          $("#result").addClass('msg_error');
          $("#result").fadeIn(1500);
      }   
    }); 
});

PHP

  $db = new DbConnector();
  $db->connect();
  $sql='SELECT grp.group_id, group_name, group_enabled, COUNT('.USER_TBL.'.id) AS users, grp.created, grp.updated '
        .'FROM '.GROUP_TBL.' grp '
        .'LEFT JOIN members USING(group_id) '
        .'WHERE grp.group_id ='.$group_id.' GROUP BY grp.group_id';

    $result = $db->query($sql);     
    $row = mysql_fetch_array($result);
    $users = $row['users'];
    if(!$users == '0'){
        $return["json"] = json_encode($return);
        echo json_encode(array('status' => 'error','message'=> 'There are users in this group'));
    }else{

        $sql2= 'DELETE FROM '.GROUP_TBL.' WHERE group_id='.$group_id.'';
        $result = $db->query($sql2);

        if(!$result){
            echo json_encode(array('status' => 'error','message'=> 'The group has not been removed'));
        }else{
            echo json_encode(array('status' => 'success','message'=> 'The group has been removed'));
        }
    }

来自 firebug 的 JSON 结果

{"status":"success","message":"success message"}

AJAX 将 JSON 结果显示为未定义,我不知道为什么。我试过显示添加dataType='json'datatype='json'。我也尝试将其更改为data.statusand data['status']: 不过仍然没有乐趣。

任何帮助将非常感激。

4

5 回答 5

48

让它dataType代替datatype.

并在 php 中添加以下代码,因为您的 ajax 请求需要 json 并且不接受任何内容,但 json。

header('Content-Type: application/json');

JSON 和 JSONP 的正确内容类型

firebug 中可见的响应是文本数据。检查Content-Type响应标头以验证响应是否为 json。它应该是application/jsonfordataType:'json'text/htmlfor dataType:'html'

于 2013-10-03T09:17:25.493 回答
5

我建议您使用:

var returnedData = JSON.parse(data);

将 JSON 字符串(如果只是文本)转换为 JavaScript 对象。

于 2013-10-03T09:19:52.270 回答
3

使用 parseJSON jquery 方法将字符串转换为对象

var objData = jQuery.parseJSON(data);

现在你可以写代码了

$('#result').html(objData .status +':' + objData .message);
于 2013-10-03T09:25:31.210 回答
2

尝试从服务器发送内容类型标头在回显之前使用它

header('Content-Type: application/json');
于 2013-10-03T09:16:26.177 回答
2

您的数据类型错误,请更改 dataType 的数据类型。

于 2014-02-13T21:07:56.747 回答