在部署服务器后,使用 svg-captcha 插件获取svg验证码会多次请求不刷新,这里只要在请求的参数data中添加一个不重复的字符串就可以,比如:时间戳。
- getCode () {
- this.$api.get(this.$root.urlPath.MJK + '/code', {code:Date.now()},res => { // 这里是发送当前时间
- console.log(res.data)
- if (res.data.code === 200) {
- this.code = res.data.data.img
- } else {
- this.$message.error(res.data.msg)
- }
- })
- },