bootstrap-tree-table不显示数据

前段代码
<!DOCTYPE html>




var prefix = ctx + "system/student" $(function () { var options = { url: prefix + "/studentlist", columns: [ { field: 'Sno', title: '学生学号', }, { field: 'Sname', title: '学生姓名', }, { field: 'Ssex', title: '学生性别', }, { field: 'Sclass', title: '学生班级', }, { field: 'Birth', title: '学生生日', }, { field: 'Saddress', title: '学生地址', }, { field: 'Sdept', title: '学生学院', }, { field: 'Stime', title: '入学时间', }] }; $.treeTable.init(options); });



显示读出了数据
图片说明
但是页面上没有显示
图片说明

https://blog.csdn.net/qq_33777040/article/details/88053443