first step:npm install mockjs // Install mockjs npm install axios The second step is to make relevant configurations in request.js. The request.js code is as follows:import axios from 'axios' // axios.defaults.headers.post['Content-Type'] = 'application/x-www-urlencoded' const http = axios.create() http.defaults.timeout = 3000 http.interceptors.request.use(config => { // Request interceptor configuration // optional // do sth return config }, error => { console.log(error) return Promise.reject(error) }) http.interceptors.response.use(response => { // Response interceptor configuration // Optional // do something return response }, error => { console.log(error) return Promise.reject(error) }) export function fetch(url, params) { // Encapsulate axios's post request return new Promise((resolve, reject) => { // Promise usage, please refer to axios.post(url, params).then(response => { resolve(response.data) // promise related}).catch(error => { reject(error) // promise related}) }) } export default { // Expose the htto_mock method, which is the method used in the following pages http_mock(url, params) { return fetch(url, params) } } The third step is to perform relevant configuration in mock.js. The mock.js code is as follows:import Mock from 'mockjs' const Random = Mock.Random var listData = function() { let _data = { status: 200, message: 'success', data: { total: 100, 'rows|10': [{ id: '@guid', name: '@cname', 'age|20-30': 23, 'job|1': ['Front-end engineer', 'Back-end engineer', 'UI engineer', 'Requirements engineer'] }] } } return { _data } } // url is the request address to be intercepted request method request data (rules) (the api here will be intercepted by mockjs) Mock.mock('http://route.showapi.com/60-27', 'post', listData()) The fourth step is to import mock.js into main.jsimport mock from '@/http/mock' Step 5: Use it in the pageimport request from '@/http/request' export default { name: "FirstPage", created() { this.getData() }, methods: { getData() { // Pretend to use http_mock to send a request (mock automatically intercepts the request and generates data) // The first parameter here needs to be consistent with the first parameter in Mock.mock() console.log('Request started') request.http_mock('http://route.showapi.com/60-27','api_id=63114&api_sign=3847b0').then(response => { console.log(response._data) }) }, } } The effect is as follows: SummarizeThis article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: CSS method of clearing float and BFC
>>: Detailed explanation of downloading, installing and using nginx server
A situation that often occurs in a project is tha...
Looking at a website is actually like evaluating a...
First, let's talk about why we use provide/in...
Main library binlog: # at 2420 #170809 17:16:20 s...
1. Check whether port 80 is occupied. Generally, ...
User namespace is a new namespace added in Linux ...
Sublime Text 2 is a lightweight, simple, efficien...
I used ECharts when doing a project before. Today...
This article shares the specific code of jQuery t...
Table of contents Current Issues Solution process...
This article shares the specific code of js to im...
Preface The best method may not be the one you ca...
If you want to understand React Router, you shoul...
Table of contents Preface 1. Arrange the installa...
mysql 8.0.22 winx64 installation and configuratio...