js 处理 ajax 请求返回的数据

  • Post author:
  • Post category:其他


1, 处理PHP返回的数组

例如:

public function getGrade()
{
    $sid = $_POST['sid'];

    $grade = Db::name('category')->where('pid',$sid)->select();

    return $grade;
}

js中 返回数据的 用法 跟PHP中数组的用法一样

例如:result[0][‘name’]

$.post("index/index/getGrade",{sid:sid},function(result){
    alert(result[0]['name']);
});

js获取数组的长度  result.length

2.处理 json 返回格式

$.post("index/index/getGrade",{sid:sid},function(result){
    var re = JSON.parse(result);
    console.log(re);

});

var re = JSON.parse(result); 通过这个方法 转发返回的 字符串 为 json格式



版权声明:本文为chengxvrenyuan原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。