给我一个eayui datagrid从excel文件导入数据的例子
时间: 2024-06-03 16:10:06 浏览: 76
eayui前台导出excel
可以参考以下代码实现:
// HTML部分
<div id="grid"></div>
// JS部分
// 导入Excel文件中的数据
function importExcelData() {
$.ajax({
url: "importExcel.php",
type: "POST",
dataType: "json",
success: function(result) {
if(result.success) {
// 将数据载入easyui datagrid中
$("#grid").datagrid("loadData", result.data);
} else {
alert("导入失败!");
}
},
error: function() {
alert("请求出错!");
}
});
}
// easyui datagrid配置
$(function() {
$("#grid").datagrid({
url: "",
method: "post",
columns: [[
{ field: "name", title: "姓名", width: 100 },
{ field: "age", title: "年龄", width: 100 },
{ field: "gender", title: "性别", width: 100 }
]],
pagination: true,
rownumbers: true,
toolbar: [{
iconCls: "icon-add",
text: "新增",
handler: function() {
// TODO: 增加一个新行
}
}]
});
});
阅读全文