petroleumboy 发表于 2021-5-26 15:34

Python的requests_html库相关求助

本帖最后由 petroleumboy 于 2021-5-26 15:39 编辑

在使用requests_html库的时候,有下面一段代码:
原意是准备用render()后,加载JS里面的内容,
但是在下面代码中找不到JS相关的内容,
然后用type()函数看了,类型为<class 'NoneType'>
求助:render()函数怎么使用呢?为什么我这样使用后,JS的内容照样获取不到呢。


from requests_html import HTMLSession
session = HTMLSession()
response = session.get('http://www.santostang.com/2018/07/04/hello-world/')
#response.html.render(timeout = 60)
print(type(response.html.render(timeout = 60)))

叫我小王叔叔 发表于 2021-5-26 16:07

本帖最后由 叫我小王叔叔 于 2021-5-26 16:26 编辑

不知道怎么删,回答错了
还有,这个库有个坑,不是utf-8的时候,乱码,就是render惹得祸


Loopher 发表于 2021-5-26 18:14

你看函数的接口返回值是什么,如果是None或没有返回,那么type(requests_html.render())函数默认是NoneType,这个函数是需要你在调用前设置一下才能用

漁滒 发表于 2021-5-27 00:31

官方文档就有写
页: [1]
查看完整版本: Python的requests_html库相关求助