jQuery Ajax Response给我我的index.html

时间:2018-07-18 09:06:38

标签: jquery ajax

当我运行jQuery Ajax请求时,我的数据就是我自己的index.html

$.ajax({
        headers: {  
            'GET': '/to/yourls-api.php?username=api&password=short&action=shorturl&url=facebook.com&keyword=facebook&format=json',
            'Accept': '*/*',
            'dataType': 'json',
            'contentType': 'application/json'
        },
        success: function(data){
            console.log(data)
    }

该如何解决? 我也尝试过function(result),但得到了相同的答复。

1 个答案:

答案 0 :(得分:0)

我认为您没有正确构建ajax调用。一定是这样的:

$.ajax({
        url:'/to/yourls-api.php?username=api&password=short&action=shorturl&url=facebook.com&keyword=facebook&format=json',
        method: 'GET',
        dataType: 'json',
        contentType: 'application/json',
        success: function(data){
            console.log(data)
    }

如果这不起作用,我还想查看您正在使用的浏览器(Chrome中的F12)的HTTP请求和来自开发人员工具的响应。