CSS skills 1
Web site folder directory design index.html src > style.css src > script.js src > assets > video >videos && src > assets > images > svgs Resource Site Videos a
Derek Zhu
Web site folder directory design index.html src > style.css src > script.js src > assets > video >videos && src > assets > images > svgs Resource Site Videos a
Axios creates an instance object to send a request Usefulness: The interface data for many projects does not come from a single server. When using the Axios object to send requests to different serv
Request Configuration These configuration objects can be used not only in axios( ), but also in .request( ), .post( ) and other request methods. 12345678910111213141516171819202122232425262728293031
Axios Introduction Both React and Vue use Axios to send data requests. Axios can run in the browser and send Ajax requests to the server. Axios can also run in node.js, making http requests to the s
Http basics The client sends a request (request message) to the server, and the request content includes request line, request header, and request body. The server responds to the data returned by t
Traverse the object: for…in loops through the object’s own and inherited enumerable properties Loops through the object’s own and inherited enumerable
Promise.all() and Promise.allSettled() Promise.all and Promise.allSettled are both methods for handling multiple concurrent Promises, but they differ
Promise: A new solution for asynchronous programming introduced in ES6. Promises are mainly to solve the previous problem of callback hell. Promise is
render() rerender is used to simulate props changing. How to get rerender(): 1const {rerender} = render(<FavoriteNumber />); rerender(
Format expect(A).ValidateItem() is used in React testing library and Jest to verify functionality. Expect() Assertion Summary 1 [Expect() Assertion Su