layui数据表格中reload报错layui error hint: The table instance with ID ‘idTest‘ not found

在使用lay UI的table表格时候,报错如下

在这里插入图片描述

原因

在使用reload函数时候,用到了idTest这个id,其对应的不是html了,而是初始化的时候,赋值的那个id

table.reload("idTest", {
	url: api.role_getByCondition,
	where: {
		name: $("#rolename").val(),
	},
	page: {
		curr: 1 //重新从第 1 页开始
	}
});

解决

在初始化表格时候,加入id: 'idTest',

table.render({
	elem: '#test',
	id: 'idTest',
	url: api.role_getAll,
	title: '角色数据表',
	totalRow: true,
	cols: [
		[{
			field: 'id',
			title: 'ID',
			sort: true,
			align: "center",
		}, {
			field: 'rolename',
			title: '角色名称',
			align: "center",
			edit: 'text'
		}, {
			field: 'state',
			title: '状态',
			align: "center",
			edit: 'text'
		}, {
			fixed: 'right',
			title: '操作',
			toolbar: '#barDemo',
			align: "center"
		}]
	],
	page: true
});
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值