token transmitted in the request header? Why do you want to do local storage when it is transmitted in the request header? what"s the point of doing local storage?
token transmitted in the request header? Why do you want to do local storage when it is transmitted in the request header? what"s the point of doing local storage?
http requests are stateless. If you need to validate other requests, you have to get
token is the ID to let the backend know the status. If token is passed between pages throughout the project, it will be stored locally, such as login status
.