export default ({ url, method = 'GET', data = null, }) => { // Request configuration let options = { method } // When data is not empty, it is a post request if (data) { options = { ...options, body: JSON.stringify(data), headers: { 'content-type': 'application/json' } } } return fetch(url, options) .then(res => res.json()) .then(data => data) } usegetpost<script type="module"> import fetchApi from './js/fetch.js' const vm = new Vue({ el: '#app', data: { users: [] }, // Initiate network request mounted() { let url = 'http://localhost:3000/api/users' // fetchApi({ url }).then(data => console.log(data)) fetchApi({ url, method: 'POST', data: { id: 200, name: 'aaa' } }).then(data => console.log(data)) } }) </script> The above is the detailed content of the detailed explanation of the fetch network request encapsulation example. For more information about fetch network request encapsulation, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: MySQL Series 12 Backup and Recovery
>>: The webpage cannot be opened because the div element lacks a closing tag
According to data analysis company Net Market Sha...
1. Get the image #Specify the version that includ...
Solving the problem Bootstrap is a CSS framework ...
The database queries which object contains which ...
Table of contents 1. List interface display examp...
1. Understanding the meaning of web standards-Why...
Table of contents 1. Pull the image 2. Create a l...
Tab bar: Click different tabs to display differen...
This article example shares the specific code of ...
Copy code The code is as follows: <BODY> //...
The difference between http and https is For some...
mktemp Create temporary files or directories in a...
Case 1 vue-cli builds the vue3 project, uploads t...
Introduction to border properties border property...
The following are all performed on my virtual mac...