vue 从后端拿到验证码,点击更新验证码

验证码登录的实现思路
1.前端从后端拿到验证码图片
2.输入验证码进行登录
3.后端拿到验证码进行比对,正确登录成功。

           // template
           
              
            
            

            //js
            data () {
               retrun {
                 imgCode: 'http://192.168.1.119:8000/cms/getCaptcha'
               }
            }
            replace () {
		      const num = Math.ceil(Math.random() * 10) // 生成一个随机数(防止缓存)
		      this.imgCode = 'http://192.168.1.119:8000/cms/getCaptcha?' + num
		    }

你可能感兴趣的:(vue.js)