Python爬虫 execjs执行js报错AttributeError: 'NoneType' object has no attribute 'replace'
在爬虫时执行js代码报错
node = execjs.get()
ctx = node.compile(js_code).call('webInstace.shell', data)
解决:
方式一:不建议,因为会影响后面打包成执行程序
点击1处进入subprocess.py文件
把encoding=None 改成encoding=‘utf-8’
方式二:
# **********放在execjs模块之前,解决execjs执行js产生的乱码报错************
import subprocess
from functools import partial
subprocess.Popen = partial(subprocess.Popen, encoding='utf-8')
import execjs
# **********************************