无法打印http响应

时间:2015-08-25 12:05:07

标签: javascript jquery ajax rest http

我无法打印网址的回复。 我也收到错误:未捕获的SyntaxError:意外的令牌<

    function functHere() {
    jQuery.ajax({
        type: 'GET',
        url: 'https://urllll',
        async: false,
        jsonpCallback: 'jsonCallback',
        contentType: "application/json",    
        dataType: 'json',
        username : '',
        password : '',
        done: function(results) {
            console.log(results);
            JSON.parse(results);
            return results;
        },
        fail: function( jqXHR, textStatus, errorThrown ) {
            console.log( 'Could not get posts, server response: ' + textStatus + ': ' + errorThrown );
        }
    }).responseJSON;        
    }

0 个答案:

没有答案