Home >Web Front-end >JS Tutorial >Detailed explanation of vue-resource interceptor setting header

Detailed explanation of vue-resource interceptor setting header

小云云
小云云Original
2018-01-02 09:41:241571browse

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

Vue interceptor vue-resource Interceptor usage detailed explanation

WeChat applet development page interceptor detailed explanation

The above is the detailed content of Detailed explanation of vue-resource interceptor setting header. 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