Header无参数怎么调用API?
wx.request({
url: 'test.php', //仅为示例,并非真实的接口地址
data: {
x: '',
y: ''
},
header: {
'content-type': 'application/json' // ================如果API的header没有参数,这是怎么写,还是整个header都不写了==================
},
success (res) {
console.log(res.data)
}})