1
$(document).ready(function() {
        var path = null;
        console.log('${pageContext.request.contextPath}/loadfile');
        $.ajax({
              dataType: "json",
              url: '${pageContext.request.contextPath}/loadfile',
              success: function(data){
                $.each(data,function(index,obj){
                    console.log(obj.id);
                    alert('inside');
                    path = obj.path;
                });  
              }     
              });

这里 /loadfile 是返回 json 对象的 url,当我转到这个 url 时,我可以看到打印在 html 页面上的 JSON 对象,但是当我访问包含上述 javascript 代码的页面时,我没有得到相同的结果

4

1 回答 1

0

人们通常不会告诉他们的服务器给浏览器他们发送的 JSON 字符串将被解释为一个 json 对象。

尽管dataType:'json'应该对其进行整理,但情况并非总是如此。

在 PHP 中

header("Content-type: application/json");

ASP

Response.AddHeader('Content-Type', 'application/json');

做不到这一点,

success: function(data){
    if (typeof data!='object') data=$.parseJSON(data); // make sure it's an object

我不知道为什么 jQuery 没有修复它,但是响应标头,即使设置了 dataType:'json' 也可以显示为application/x-www-form-urlencoded; charset=UTF-8并且对象没有被创建。

于 2013-02-11T08:11:13.653 回答