参数正确吗?参数如果没问题把jsonp改成json,试试
$.ajax({
url: 'example.com/api/data',
type: 'GET',
dataType: 'json',
success: function(data) {
console.log(data);
},
error: function(jqXHR, textStatus, errorThrown) {
console.error('Error: ' + textStatus, errorThrown);
}
});