YQL丢失HTML元素属性?

时间:2011-07-09 23:42:07

标签: yahoo yql yahoo-pipes

YQL Console Link

查询:

select * from html where url='http://www.cbs.com/shows/big_brother/video/' and xpath='//div[@id="cbs-video-metadata-wrapper"]/div[@class="cbs-video-share"]/a'

返回:

<?xml version="1.0" encoding="UTF-8"?>
<query xmlns:yahoo="http://www.yahooapis.com/v1/base.rng"
    yahoo:count="1" yahoo:created="2011-07-09T23:14:02Z" yahoo:lang="en-US">
    <diagnostics>
        <publiclyCallable>true</publiclyCallable>
        <url execution-time="146" proxy="DEFAULT"><![CDATA[http://www.cbs.com/shows/big_brother/video/]]></url>
        <user-time>163</user-time>
        <service-time>146</service-time>
        <build-version>19262</build-version>
    </diagnostics> 
    <results>
        <a class="twitter-share-button" href="http://twitter.com/share"/>
    </results>
</query>

应该返回类似的内容:

    <results>
        <a href="http://twitter.com/share" data-url="http://www.cbs.com/shows/big_brother/video/2045825951/big-brother-episode-1" class="twitter-share-button"></a>
    </results>

如果我将查询退回到一个级别,它会完全删除该元素,我也可以使用它来获取我需要的数据。

1 个答案:

答案 0 :(得分:8)

我们现在有一个新的html解析器可以识别自定义属性。

添加compat="html5"以触发新的解析器。

e.g:

select * from html where url = "http://mydomain.com" and compat="html5"