Vue3 uses axios interceptor to print front-end logs

Vue3 uses axios interceptor to print front-end logs

1. Introduction

Many times we need to debug the front end, that is, debug the interaction between the front-end and back-end interfaces. The common way is to log, such as console.log ('log content').

This method is actually OK for a single method, but for multiple interfaces and methods, this debugging method is a little worse. Also, methods have an execution order, which sometimes affects debugging.

2. Use axios interceptor to print front-end logs

This is a more recommended method, that is, write it once and you don’t have to write console.log all the time.

Suddenly I thought of a sentence I often saw when doing tests:

It’s all about testing

To paraphrase this sentence, it's all about debugging.

1. Modify main.ts

Modify main.ts and add the following content:

html
/**
 * axios interceptor */
axios.interceptors.request.use(function (config) {
  console.log('Request parameters:', config);
  return config;
}, error => {
  return Promise.reject(error);
});
axios.interceptors.response.use(function (response) {
  console.log('Return result:', response);
  return response;
}, error => {
  console.log('Return error:', error);
  return Promise.reject(error);
});

2. Delete all console.log in home

3. Recompile and start again

Check the results as shown below:

This is the end of this article about Vue3 using axios interceptor to print front-end logs. For more relevant Vue3 using axios interceptor to print front-end logs, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solve the problem of Vue cross-domain axios asynchronous communication
  • Vue+axios sample code for uploading pictures and recognizing faces
  • How to encapsulate axios in Vue
  • Detailed explanation of Axios asynchronous communication in Vue

<<:  3 ways to add links to HTML select tags

>>:  How to choose between MySQL CHAR and VARCHAR

Recommend

Install JDK1.8 in Linux environment

Table of contents 1. Installation Environment 2. ...

How to use JavaScript strategy pattern to validate forms

Table of contents Overview Form validation withou...

Detailed explanation of HTML form elements (Part 2)

HTML Input Attributes The value attribute The val...

HTML table border control implementation code

Generally, when we use a table, we always give it...

Solution to MySQL IFNULL judgment problem

Problem: The null type data returned by mybatis d...

15 important variables you must know about MySQL performance tuning (summary)

Preface: MYSQL should be the most popular WEB bac...

How much do you know about JavaScript inheritance?

Table of contents Preface The relationship betwee...

Vue implements the method of displaying percentage of echart pie chart legend

This article mainly introduces the pie chart data...

In-depth understanding of Worker threads in Node.js

Table of contents Overview The history of CPU-bou...

Linux uses suid vim.basic file to achieve privilege escalation

Reproduce on Kali First set suid permissions for ...

How to add, delete and modify columns in MySQL database

This article uses an example to describe how to a...

How to install Windows Server 2008 R2 on Dell R720 server

Note: All pictures in this article are collected ...