是否有现有的 js 方法/库将常规 json 对象转换为 google 可视化类型的 js 对象?
我们现有的其余 Web 服务可以生成 json 响应。现在我们想使用谷歌图表来显示这些数据。谷歌可视化 api 似乎需要它自己的 json 格式。是否有任何现有的 js 方法/库可以将常规 json 对象转换为 google 可视化类型的 js 对象?谢谢。
we have existing rest web services that generates json response. now we want to use google charts to show those data. google visualization api seems to expect its own json format. Is there any exiting js method/library to convert regular json objects to google visualization type of js objects? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这实际上取决于您的目标是什么、数据是什么样的,以及您想要使用的谷歌图表。在使用 REST 数据和 google 图表时,我通常会执行以下操作。
在此示例中,我使用 jQuery,但您使用的 js 库并不那么相关。
假设您有以下数据集以及在区域图中显示的内容:
使用 JQuery 和 JSONQuery (这可以帮助您轻松选择 JSON 数据中的特定内容)您可以执行以下操作:
It really depends on what you're aiming for and what data looks like, and the google chart you want to use. I usually do the following when working with REST data and google charts.
In this example I use jQuery, but the js library you use isn't that relevant.
Say you've got the following set of data and what to show it in an areachart:
To do this with JQuery and JSONQuery (which can help in easy selecting specific content in your JSON data) you can do something like this: