欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

前端笔记04——layui上传组件layui.upload的使用

程序员文章站 2022-03-02 12:14:42
...

layui上传组件layui.upload的使用入下:现在记录下来,省的以后都找不到了

upload.render({
		elem: '#importBtn',
		url: api + "/excelImport/",
		size:1024*3,
		data: {
			id: function() {
				return $('#p_id').val();
			}
		},
		accept: 'file',
		exts: 'xlsx|xls',
		done: function (res, index, upload) {
			if (res.ok) {
				layer.msg('上传成功!');
			} else {
				layer.msg(res.message);
			}
		}
	});