get请求中参数含有特殊字符时,传到后端的值会出现问题
例如:
邮箱:q5p9jp+7lx98vtoxft4vm3o@sharklasers.com
get请求中发送给后端时,参数为:q5p9jp 7lx98vtoxft4vm3o@sharklasers.com
解决方法:
1、后端将get请求修改为post请求
2、前端对参数进行编码encodeURIComponent(this.ruleForm.email)
get请求中参数含有特殊字符时,传到后端的值会出现问题
例如:
邮箱:q5p9jp+7lx98vtoxft4vm3o@sharklasers.com
get请求中发送给后端时,参数为:q5p9jp 7lx98vtoxft4vm3o@sharklasers.com
解决方法:
1、后端将get请求修改为post请求
2、前端对参数进行编码encodeURIComponent(this.ruleForm.email)