我在Babel中很新,并尝试使用标题“Content-Type”作为“application / json”发出POST请求。是否有任何文档可以更改Request
的标题?
import Request from 'request-promise-native'
const result = await Request
.post(`some url`)
.auth(authId, secretToken,false)
.form({
text: "hello"
})
console.log(result);
return JSON.parse(result)
答案 0 :(得分:0)
只需添加一个标题对象:
.headers({
'Content-Type': 'application/json'
})