更改Babel中Request的默认标头

时间:2017-08-16 02:46:39

标签: javascript node.js http-headers request-promise

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

1 个答案:

答案 0 :(得分:0)

只需添加一个标题对象:

.headers({
    'Content-Type': 'application/json'
})