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

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);
			}
		}
	});

 

你可能感兴趣的:(前端,#,layui)