如何使用 sencha touch 解析 XML?
我从 xml 格式的 ajax 请求获取响应,但如何使用 sencha touch 解析它们? 例如 :
Ext.Ajax.request(
{
url: "",
xmlData: "",
method: "POST",
callback: function(options, success, response)
{
//response.responseText is equal to <a><b>value</b></a>
if (success) {
//Parsing response.responseText ...
}
}
});
I obtain response from ajax request in xml format, but how can I parse them using sencha touch?
For example :
Ext.Ajax.request(
{
url: "",
xmlData: "",
method: "POST",
callback: function(options, success, response)
{
//response.responseText is equal to <a><b>value</b></a>
if (success) {
//Parsing response.responseText ...
}
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所有现代浏览器都有内置的 XML 解析器
XML 解析(w3 Schools)
如果您尝试向商店加载模型和服务结果是 XML 那么你可以使用 xml 阅读器:
All modern browsers have a built in XML Parser
XML Parsing (w3 Schools)
If you are trying to load a store with models and your service result is XML then you can use the xml reader: