easyUI的datagrid疑问

发布于 2021-11-19 01:11:07 字数 615 浏览 712 评论 3

easyUI版本1.2.4

$('#dataTable').datagrid({

data:[{goodsType: 0, siteType: 1, count: 365333, statisticsDate: 1356832800000},{goodsType: 0, siteType: 1, count: 365333, statisticsDate: 1356832800000} ,{goodsType: 0, siteType: 1, count: 365333, statisticsDate: 1356832800000} ]
columns : [[{
field : 'statisticsDate',
title : '时间',
width : 100
}, {
field : 'count',
title : '数量',
width : 100
}, {
field : 'goodsType',
title : '物品类型',
width : 100
}]]
});


这样写为什么不能列出数据呢?我看demo都是用url来请求的,但是我这边是json字符串,一直赋值不了。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

拍不死你 2021-11-20 07:21:34

key和value都用
双引号!

伴我心暖 2021-11-19 14:14:21

 我的模型类  总数你貌似没有

package com.silence.model;

import java.util.List;

public class DataGrid {
	private Long total;// 总记录数
	private List rows;// 每行记录
	private List footer;
	public Long getTotal() {
		return total;
	}
	public void setTotal(Long total) {
		this.total = total;
	}
	public List getRows() {
		return rows;
	}
	public void setRows(List rows) {
		this.rows = rows;
	}
	public List getFooter() {
		return footer;
	}
	public void setFooter(List footer) {
		this.footer = footer;
	}
	
}
野心澎湃 2021-11-19 12:05:08

确认版本是最新的那个1.3.2? 这个属性是最后一个版本才有的

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文