<Upload action="/sys/mts/uploadFile"
:headers="headers"
:with-credentials= true
:before-upload="handleUpload"
:show-upload-list="showUploadList"
style="margin-left: 131px; margin-top: -30px;"
></Upload>
相关内容补充:
headers: {
'Access-Control-Allow-Origin' : '*'
},
credentials: true
谢谢各位大佬!
5 回答
陪伴而非守候
TA贡献1757条经验 获得超8个赞
跨域文件上传实际上就是跨域请求,如果你是vue-cli生成的项目,在config文件下,找到index.js,在里面配置跨域就行了。例如:
proxyTable: {
'/api': {
target: '你的服务器地址',
changeOrigin: true,
pathRewrite: {
'^/api': '',
},
}
},
请求时,在所有接口前面加上/api/你的接口名称,就可以实现跨域。
添加回答
举报
0/150
提交
取消