我需要将内容类型设置为' 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'
但它并不好。
是否可以在特定请求中设置内容类型?