如何提取 Google 语音数据?
Google Voice 有 XML URL,所以我想知道如何从返回的 XML 中提取 JSON 部分并将其解析到页面。 Google Voice 的搜索功能现在已失效,我想访问我的历史记录。我认为对历史记录中最后一个已知页码之前的所有页面进行同步调用应该可以做到这一点......
Google Voice has XML URLs so I was wondering how somebody would pull the JSON part from the returned XML and parse it out to a page. Google Voice's search capability is busted right now and I want to get access to my history. I'm thinking that a synchronous call to all of the pages up to the last known page number in my history should do it...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能是您最好的选择...
在此处阅读有关数据类型转换的信息: http://api.jquery.com /extending-ajax/
特别是下面的部分:
我不知道这个确切的代码片段是否会正确返回 JSON 内容,但至少应该将其从 XML 响应中删除(您可能需要添加额外的代码来将返回的“textValue”解析为 JSON。也许使用 jQuery
parseJSON
方法。也许尝试:
希望这会有所帮助。
This may be your best bet...
Read about dataType conversion here: http://api.jquery.com/extending-ajax/
Particularly the section that says:
I don't know if this exact code snippet will return the JSON content properly, but at the very least it should strip it out of the XML response (you may need to add additional code to parse the returned "textValue" as JSON. Perhaps using the jQuery
parseJSON
method.Maybe try:
Hope this helps.
XML 和 JSON 不是相同的数据类型。如果您的数据返回的唯一类型是 XML,那么您可能必须将数据处理为 XML。如果 URL 具有 .xml,您可以尝试将其更改为 .json 以查看它是否返回 JSON 数据类型。
如果您向我们提供更多信息(示例、URL 等),有人可能能够更好地帮助您。
XML and JSON are not the same data types. You will likely have to process the data as XML, if that's the only type your data is returned as. If the URL has .xml, you might try changing it to .json to see if it returns a JSON data type.
If you give us more information (examples, URLs, etc), someone might be able to help you better.