public BaseResponseResult<Object> getMailCode(
@RequestParam("mail") String mail
) {}
默认情况下,使用 axios.post() 发送 post 请求,请求的数据类型为 application/json
使用 axios 发送 post 请求,且请求数据类型为 application/x-www-form-urlencoded
/**
* 发送 post 请求,请求数据类型(Content-Type)为 application/x-www-form-urlencoded
*
* @param url 请求资源路径
* @param data 请求数据
* @return {Promise<axios.AxiosResponse<any>>}
*/
export function postContentTypeFormUrlencoded(url, data) {
return request.post(
url,
data,
{
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}
)
}
public BaseResponseResult<Object> loginByMail(
@RequestBody
UserLoginInfoVo userLoginInfoVo
) {}
/**
* 用于封装接收客户端传递到服务端的用户登录信息
*/
@AllArgsConstructor
@NoArgsConstructor
@Data
@Getter
@Setter
public class UserLoginInfoVo {
/**
* 用户通过密码登录时使用的用户名/账号/电子邮箱/手机号
*/
private String account;
/**
* 用户通过邮箱登录时使用的电子邮箱。
* 需要使用 RSA 加密算法进行解密
*/
private String mail;
/**
* 用户通过手机登录时使用的手机号。
* 需要使用 RSA 加密算法进行解密
*/
private String telephone;
/**
* 用户登录时输入的验证码。
* 需要使用 RSA 加密算法进行解密
*/
private String code;
/**
* 用户通过密码登录输入的密码。
* 需要使用 RSA 加密算法进行解密
*/
private String password;
}