js获取layui upload文件对象
时间: 2023-08-19 13:04:57 浏览: 157
使用js在layui中实现上传图片压缩
在 layui 中,使用 upload 组件上传文件,可以通过监听 upload 组件的 change 事件来获取选择文件的信息。
具体获取方式如下:
1. 给 upload 组件绑定 change 事件:
```
upload.render({
elem: '#test'
,url: '/upload/'
,change: function(res){
// 选择文件后的回调函数
}
});
```
2. 在回调函数中获取文件对象:
```
upload.render({
elem: '#test'
,url: '/upload/'
,change: function(res){
// 获取文件对象
var file = res.file;
}
});
```
其中,res.file 就是选择的文件对象。您可以根据需要,从文件对象中获取文件名、文件大小等信息。
阅读全文