FineUI 官方论坛

标题: 【已解决】请教F.js中表格绑定的数据格式 [打印本页]

作者: MILI_DOU    时间: 2018-5-11 15:49
标题: 【已解决】请教F.js中表格绑定的数据格式
大神,请问后台传一个对象集合到前台界面,表格中的数据能否自己实现一一对应?
比如我的后台对象是这样的:
实体类 :User.java
属性: id
            name
            password
            sex
            birthday



我返回给前台的数据是List<User>

那么表格的显示是 姓名     性别     生日   密码

能否实现根据属性名和前台中field的值相同一一对应?
  1. F.ready(function () {

  2.             F.ui({
  3.                 type: 'grid', id: 'grid1', renderTo: '#wrap1', width: 800, collapsible: true, title: '表格',
  4.                 columns: [{
  5.                     columnType: 'rownumberfield'
  6.                 }, {
  7.                     text: '姓名', field: 'name', width: 100
  8.                 }, {
  9.                     text: '性别', field: 'sex', width: 80
  10.                 }, {
  11.                     text: '生日', field: 'birthday', width: 80
  12.                 }, {
  13.                     text: '密码', field: 'password', width: 80, columnType: 'checkboxfield'
  14.                 }]
复制代码





作者: sanshi    时间: 2018-5-12 10:51
F.js中表格支持两种数据格式:
1. 数组型
http://js.fineui.com/grid/grid_inlinedata.html

2. 对象型
http://js.fineui.com/grid/grid_inlinedata_object.html

查看页面源代码发现对应的数据格式
作者: MILI_DOU    时间: 2018-5-16 15:04
sanshi 发表于 2018-5-12 10:51
F.js中表格支持两种数据格式:
1. 数组型
http://js.fineui.com/grid/grid_inlinedata.html

好的 谢谢




欢迎光临 FineUI 官方论坛 (https://fineui.com/bbs/) Powered by Discuz! X3.4