0

我在 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)
4

1 回答 1

0

只需添加一个 headers 对象,如下所示:

.headers({
    'Content-Type': 'application/json'
})
于 2017-08-16T02:55:09.553 回答