在这里红色的部分field字段显示得信息是,返回数据中的department得值,再此示例中因为返回数据是department是一个obj所以要用formatter属性进行重新的字段名定义
var column_views = [ {field: 'user_id', title: '工号', width: 70, sortable: true, align: 'center'}, {# {field: 'knowtype', title: '类型', width: 100, sortable: true},#} {field: 'name', title: '用户名称', width: 150, sortable: true, align: 'center'}, {field: 'department', title: '所属部门', width: 200, sortable: true, align: 'center', formatter:function(value, row, index){ return row.department.name }}, {field: 'email', title: '用户名称', width: 70, sortable: true, align: 'center'}, //{ title: '操作', width: 100, sortable: true},]
来源:https://www.cnblogs.com/pythonwenma/p/12657403.html