欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

图形验证码

程序员文章站 2022-05-13 15:00:32
...
changeImg(){
            var _that = this
            var num = Math.ceil(Math.random()*10)
            axios.get('learn/get/getValidatePicCode?suiji='+num,{responseType: 'arraybuffer'}).then(function(data) {
                _that.piccode = data.headers.piccode.toLowerCase()
                _that.yzmImg = 'data:image/png;base64,' + btoa(new Uint8Array(data.data).reduce((data, byte) => data + String.fromCharCode(byte), ''))
            });
        },

 

相关标签: 随记