ListModel、QMap、Xml 解析

发布于 2024-11-01 23:10:29 字数 271 浏览 1 评论 0原文

我正在尝试解析一些 car2go 响应 xml 并创建我的 C++ 模型。然后将该模型暴露给 qml。

问题:使用 Qmap 或 qmultimap 哪个地图?以及如何解析?

看起来 car2go 的回应是: http://code.google.com/p/car2go/wiki/vehicles_v2_0

提前致谢

i am trying to parse some car2go response xml and create my c++ model. then expose that model to qml.

Question: which map to use Qmap or qmultimap ? and how to parse ?

so looks car2go response :
http://code.google.com/p/car2go/wiki/vehicles_v2_0

THanks in advance

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

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

发布评论

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

评论(1

陌生 2024-11-08 23:10:29

你可以做的比那容易得多。有 2 种方法:

1) 使用 XmlListModel 并指定 xml 选项作为路径

2) 由于支持 JSON,因此使用 AJAX 技术 - 在 QML 中使用 XmlHttpRequest 并向服务器发送请求,并通过使用 JSON 获取 JSON 对象来操作它.parse(xml_http_request.responseText)

You can do it much easier than that. There are 2 ways:

1) Use XmlListModel and specify the xml option as a path

2) Since JSON is supported, use AJAX technique - use XmlHttpRequest in QML and post a request to the server and operate on your JSON object by getting it using JSON.parse(xml_http_request.responseText)

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