encapsulate a request module with axios. Except for registering and obtaining CAPTCHA, other APIs need to pass token, in headers. Headers can be picked up and written, for example:
// axios.defaults.headers = {
// "appId": APPID,
// "token": token,
// "Content-Type": "application/x-www-form-urlencoded"
// }
but for the two interfaces mentioned above, I have to write those two interfaces separately without token,. Is there anything I can do?