Home  >  Article  >  Web Front-end  >  Detailed explanation of vue-resource interceptor setting header information

Detailed explanation of vue-resource interceptor setting header information

小云云
小云云Original
2018-01-20 13:13:101360browse

This article mainly brings you an example of setting header information for vue-resource interceptor. The editor thinks it’s pretty good, so I’ll share it with you now and give it as a reference. Let’s follow the editor to take a look, I hope it can help everyone.

Use vue-resource, set header information:

Vue.http.interceptors.push((request, next) => {
 request.headers.set('Authorization', token)
 console.log(request.headers)
 next(response => {
  console.log(response.status)
  return response
 })
})

Related recommendations:

Vue2.0 axios front-end and back-end login interceptor detailed explanation

vue-resource interceptor setting header detailed explanation

Vue interceptor vue-resource interceptor usage detailed explanation

The above is the detailed content of Detailed explanation of vue-resource interceptor setting header information. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn