Axios global request parameter settings, request and return interceptor methods, axios global

Source: Internet
Author: User

Axios global request parameter settings, request and return interceptor methods, axios global

Application scenarios:

1. parameters included in each request, such as tokens and timestamps.

2. Determine the returned status, such as whether the token has expired.

The Code is as follows:

Axios. interceptors. request. use (config => {var xtoken = getXtoken () if (xtoken! = Null) {config. headers ['x-token'] = xtoken} if (config. method = 'post') {config. data = {... config. data, _ t: Date. parse (new Date ()/1000,} else if (config. method = 'get') {config. params = {_ t: Date. parse (new Date ()/1000 ,... config. params} return config}, function (error) {return Promise. reject (error)}) axios. interceptors. response. use (function (response) {// the token has expired and is redirected to the logon page if (response. data. code = 4) {localStorage. clear () router. replace ({path: '/signin', query: {redirect: router. currentRoute. fullPath})} return response}, function (error) {// Do something with response errorreturn Promise. reject (error )})

In the above axios global request parameter settings, the request and return interceptor method is all the content that I have shared with you. I hope to give you a reference and support for the customer's house.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.