there is a news system in the project, which is divided into international news, domestic news and industry news. It is stored in the database table bigclass, and international news is divided into financial news, sports news and entertainment news. Dom...
except for get requests, my current api is designed to pass parameters in body , and the background springmvc is received by @ requestbody. my idea is: if all are passed in url, the backend needs to write multiple parameters one by one, which is very t...
get post are these stipulated by http or restful? I am the front end, and I always thought that get post is stipulated by the http protocol. but recently, when I saw what restful is, I saw that get is used to obtain, and post is used to create new on...
when learning REST, I learned that POST requests are non-idempotent, while PUT requests are idempotent, so POST is suitable for adding and PUT is suitable for modification. there is a question here, is the idempotency here just a difference in definitio...
there are two modes of OAuth protocol in Tencent QQ Internet platform. The specific process is understood, but the differences in usage scenarios are not clear: the first is client-side mode : using OAuth2 s Implicit_Grant mode the second is serv...
how to force electron to run on computers that do not support webGL I have read a lot of information on the Internet that if you run this line of code on the main process, you can force it to run . app.commandLine.appendSwitch( ignore-gpu-blackli...
how to upload jpg format images of d disk under windows to the server in batch via thinkphp ...
after vuex is installed through npm, using mapGetters requires import {mapGetters} from vuex to introduce mapGetters, but my project is to introduce vuex.min.js files through CDN. I want to use mapGetters on the page how to introduce mapGetters. It ...
I am a rookie. Our teacher Bishu asked me to do a host computer to control the camera to take photos, monitor and so on, and then send data to the cloud. can you recommend some relevant information to me if possible? can you use electron and webrtc to i...
seeing that js is written in this way, I don t know the meaning of the curly braces: function run(){ { alert(1); } } I don t really understand that he just executed a method in curly braces, which has anything to do with the scope ...