微信小程序使用豆瓣API接口

douban: function (){
wx.request({
url: 'https://douban.uieee.com/v2/book/1220562',
//必须要设置"content-type":"json",不然会报错 400 (Bad Request)
header:{
"content-type": "json"
},
success: function (backData){
console.log(backData);
}
})
}

猜你喜欢

转载自blog.csdn.net/qq_42209630/article/details/80778604