layui文件上传 接口怎么写

layui文件上传 接口怎么写,第1张

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>文件上传</title> <link rel="stylesheet" href="layui/css/layui.css"> <link rel="stylesheet" href="css/global.css"> </head> <body> <fieldset class="layui-elem-field layui-field-title" style="margin-top: 20px"> <legend>设定上传文件的格式</legend> </fieldset><input type="file" name="file" class="layui-upload-file"><input type="file" name="file1" lay-type="file" class="layui-upload-file"><input type="file" name="file1" lay-type="audio" class="layui-upload-file"><input type="file" name="file2" lay-type="video" class="layui-upload-file"><blockquote class="layui-elem-quote" style="margin-top: 20px">支持拖动文件上传</blockquote><fieldset class="layui-elem-field layui-field-title" style="margin-top: 50px"> <legend>演示羡肆上传</legend> </fieldset> <div class="site-demo-upload"> <img id="LAY_demo_upload" src="layui/images/tong.jpg"> <div class="site-demo-upbar"> <input type="file" name="file" class="layui-upload-file" id="test"> </div> </div><p style="margin-top: 20px">注:由于服务器资源有限,所以此处每次给你返回的是同一张图片</p><script src="layui/layui.js"></script> <script> layui.use('upload', function(){layui.upload({url: '' //上档谨传接口,success: function(res){ //上传成功后的回调 console.log(res) } }) layui.upload({url: '/test/upload.json',elem: '#test' //指定原始元素,行派基默认直接查找class="layui-upload-file",method: 'get' //上传接口的http类型,success: function(res){ LAY_demo_upload.src = res.url } }) }) </script> </body></html>

elementUI+el-upload 上传文件大小与文件类型校验

https://blog.csdn.net/weixin_38659265/article/details/89447469

elementUI+Vue 验证上传文件的类型

https://www.jianshu.com/p/49e90bea086c

1)嵌入组件知滚橘

2)第一搭团种文件类型校验

直接在el-upload中加上下面这一行就好,这适用于文件类型比较常见的,文件类型可选择性比较少时

3)第二种适用与校验文件类型比较多时,可以在beforeUpload方法中进行过滤:

4)文件大小校验

可备敬以在beforeUpload方法中进行过滤:

5)beforeRemove方法中需要把不符合大小的文件自动移除

<el-upload

ref="uploadRef"//给上传文件绑脊消没定一个ref必要时好清空上传文件数组

style="margin-left:10px"

:limit="limitNum" //限制上传文件个数 这里我一个对象来代替

action="" // 上传地桥清址

multiple

:auto-upload="false" //自动上传文件

:show-file-list="false" //是否显示上传信息列表

class="upload-demo"// 关闭前的验证

:before-upload="beforeUploadFile"//上传前的验证

:on-exceed="exceedFile" //超出上传个数的验证

:on-change="fileChange" //上传文件发生改变时触发change事件

>

<el-button slot="trigger" type="primary">导入文件</el-button>

</el-upload>

——-----------------------------------------------------------------------------------------

fileChange(file, fileList) {

this.beforeUploadFile(file)

if (this.beforeUploadFile(file)) {

this. refs.uploadRef.clearFiles() //清空上传列表里面的数据

}

}

exceedFile(files, fileList) {

this. {this.limitNum} 个文件,当前共选择了 ${files.length + fileList.length} 个`)

}

beforeUploadFile(file) {

const isLt5M = file.size / 1024 / 1024 <10

if (this.allowType.indexOf(file.name.substring(file.name.lastIndexOf('.') + 1)) === -1) {

this. {this.allowTypeTips} 格式!`

})

return false

}

if (!isLt5M) {

this.$message.error({ title: '系统提示', message: '上传文件大樱纳小不能超过 10MB!' })

return false

} else {

return true

}

}

uploadFile() {

if (this.fileList.length === 0) {

this. message.success({ title: '系统提示', message: '上传成功' })

this.fileList = []

} else {

this.$message.error({ title: '系统提示', message: '上传失败' })

}

})

}

},


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12170175.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-21
下一篇 2023-05-21

发表评论

登录后才能评论

评论列表(0条)

保存