KKFileView 文件预览
Siona
KKFileView 文件预览
一、文件上传到服务器
1. 前端 Vue 代码
<a-upload
v-model:file-list="fileList"
:showUploadList="false"
name="file"
:max-count="1"
:action="BackendUrl.FilePreview + '/file/fileUpload'"
@change="handleFileUploadChange"
>
<a-button type="primary" style="margin-bottom: 15px; margin-left: auto;">
<upload-outlined></upload-outlined>
文件上传
</a-button>
</a-upload>
2. 后端 Java 服务,使用 kkFileView
https://zhuanlan.zhihu.com/p/658280431