我需要更改内容类型'要求。我该怎么做?

时间:2018-01-25 10:35:33

标签: vue.js vue-resource

我需要将内容类型设置为' application / json-rpc'但我无法做到。 我试试这段代码:

let headers = {
  headers: {
    'Content-Type': 'application/json-rpc'
  }
}
return Promise.resolve()
  .then(function () {
    return http.post(self.baseUrl, requestObj, headers).then()
  })

但请求仍然有

Content-Type:application/json;charset=UTF-8

我可以设置正确的内容类型'在全球范围内

Vue.http.headers.post['Content-Type'] = 'application/json-rpc'

但它并不好。

是否可以在特定请求中设置内容类型?

0 个答案:

没有答案