ListModel、QMap、Xml 解析
我正在尝试解析一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以做的比那容易得多。有 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)