微信小程序开发求助!获取素材列表
为什么我在在线调试工具发送post请求就能够成功获取到数据,
在网站发送就会返回报错的数据?
$(function(){
$.ajax({
type: ‘post’,
url: url,
data: {
“type”:“news”,
“offset”:0,
“count”:10
},
dataType: ‘jsonp’,
success:function(result){
console.log(result);
}
});
});