后端springboot+前端html+vue+element,不走网关时Kaptcha的验证码图片可以加载,走网关就加载不出来。
getdefaultKaptcha: function () {
request({
url: '',
method: 'GET',
params: {},
responseType: 'blob'
}).then(res => {
this.checkCode = window.URL.createObjectURL(res)
}).catch(err => {
})
}