JQuery的JSON响应是未定义的

这个问题在这里已经有了答案:

  • 访问/进程(嵌套)对象,数组或JSON 18个答案
  • 在JavaScript中解析JSON? [复制] 16个回答

  • 由于响应是一个数组。 你可以循环遍历所有元素

    response.forEach(function(data){
        console.log(data.latitude);
    });
    

    它是数组,你必须像这样循环:

    $.each(response,function(index,item){
    
        console.log(item);
    
    });
    

    或者如果它总是单个项目,那么你可以像这样访问第一个索引:

    console.log(reponse[0].latitude);
    condole.log(reponse[0].longitude);
    

    工作快乐

    链接地址: http://www.djcxy.com/p/8501.html

    上一篇: Jquery JSON response is undefined

    下一篇: Parsing JSON file and using it in HTML