1

尝试访问外部 API。

使用 jQuery 1.9.1。

    $.ajax({
        cache: true, // remove the _ query parameter from the url
        dataType: 'script', // used to be 'jsonp', however changed to 'script' in order to remove the _ query parameter being added to the url
        jsonp: false, // remove the callback query parameter, this causes the url to fail
        type: 'GET',
        url: 'http://api.external-domain.com/format/json/',

        success: function(data){
            alert('success');

            $.each(data.parent, function(i, item){  
                var vname = item.Name;
                $('<li />').html(vname).appendTo('#list');
            });

        },

        error: function(){
            alert('failure');
        }

    });

显示成功警报,项目名称未写入列表,但浏览器开发人员工具状态

Firefox:语法错误:标签无效

Chrome:未捕获的 SyntraxError:意外的令牌

错误消息将 json 文件标识为原因,但是如果我复制相同的 json 文件并将其放在本地服务器上(同时将 dataType 修改为 json),它就可以工作。

请帮忙。

4

0 回答 0