jqgrid从多个url加载

发布于 2024-12-07 04:39:56 字数 145 浏览 0 评论 0原文

我有一个页面,有 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 技术交流群。

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

发布评论

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

评论(2

迷爱 2024-12-14 04:39:56

您可以加载要作为项目数组放置在网格中的数据。从每个来源你都会得到一个数组。然后您可以连接数组,例如关于 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.

池予 2024-12-14 04:39:56

您是否尝试多次调用 addJSONData

var grid = $('#'+grid_id)[0];
grid.addJSONData(jsondata1); 
grid.addJSONData(jsondata2); 
grid.addJSONData(jsondata3); 

Did you try just calling addJSONData multiple times?

var grid = $('#'+grid_id)[0];
grid.addJSONData(jsondata1); 
grid.addJSONData(jsondata2); 
grid.addJSONData(jsondata3); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文