1,jQuery里面的jsoncallback
上面的代码中就是因为接口需要设置回调函数,但是需求可以不用回调函数 ,则使用jQuery的jsonp
代码:
<script>
function sendAjax(){
$.ajax({
method:'post',
url:' http://platform.sina.com.cn/slide/album_tech?app_key=1271687855&num=3&page=4',
dataType:'jsonp',
jsonp:'jsoncallback'
}).done(function(response){
console.log(response.data)
})
}
sendAjax()
</script>
成功获取数据:
2,引入jquery的方式
1)在百度静态资源公共库搜索jquery的在线地址
2)通过命令行 git bush 下载jquery
npm i jquery
i是install的缩写
下载完成在dist目录里面