我使用 HTMLTreeParser 获得了这个结构,我需要将文本包含在页面中
doc <- htmlTreeParse(url, useInternalNodes = FALSE)
doc
$file
[1] "http://www.google.com/trends/fetchComponent?q=asdf,qwerty&cid=TIMESERIES_GRAPH_0&export=3"
$version
[1] ""
$children
$children$html
<html>
<body>
<p>// Data table response google.visualization.Query.setResponse([INSERT LOT OF JSON HERE])</p>
</body>
</html>
attr(,"class")
[1] "XMLDocumentContent"
我正在寻找“p”块上的内容。我今天没有找到任何可以帮助我的东西。
那么,我怎样才能得到这些数据呢?