我有以下js代码从RESTful api检索响应对象。我试图做一个控制台日志只是为了查看响应对象的内容,但是在控制台中什么也没记录。但是,当我检查“网络”选项卡时,响应对象在那里。我在做什么错了?
$.ajax({
url: "http://mylocaldotcom/products",
type: 'GET',
dataType: 'jsonp',
success: function(products) { console.log(products); }
});