我正在尝试使用rvest包读取下面链接的成员类型和注释。但是,我的代码总是只返回前10条评论。我觉得read_html(url)没有读完整页。请帮帮我。
以下是我正在使用的代码:
url = "http://mmb.moneycontrol.com/stock-message-forum/axisbank/comments/3142?utm_source=PC_SENTI"
library(rvest)
html_content= read_html(url)
html_main_node = html_nodes(html_content,".info a")
html_text(html_main_node)
谢谢!