jqgrid从多个url加载
我有一个页面,有 jqgrid,它从 url 获取 json。我想从多个 url 加载数据,而不是在同一个网格上的一个 url 上加载数据。
我怎样才能做到这一点。原因是,我必须显示来自不同来源的数据,无论来自哪个来源,id 都是唯一的。
谢谢
I have a page, that has jqgrid, it is fetching json from a url. I want to load data from multiple urls instead on one url, on the same grid.
How can I achieve that. The reason is, I have to display data from different sources, the ids will be unique no-matter if its from which source.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以加载要作为项目数组放置在网格中的数据。从每个来源你都会得到一个数组。然后您可以连接数组,例如关于 jQuery.merge。您将收到全套物品。最后,您使用
datatype: 'local'
创建 jqGrid,并将串联项目的数组作为 data 参数。You can load the data which you want to place in the grid as array of items. From every source you will get an array. then you can concatinate the arrays for example with respect of jQuery.merge. You will receive the full array of items. At the end you create jqGrid with
datatype: 'local'
and with the array of concatenated items as the value of the data parameter.您是否尝试多次调用
addJSONData
?Did you try just calling
addJSONData
multiple times?