求助,这个爬虫时候遇到的问题怎么解决
import requestsimport json
headers={}
url="https://club.jd.com/comment/productPageComments.action?&productId=100018298698&score=0&sortType=5&page=1&pageSize=10&isShadowSku=0&fold=1"
headers["User-Agent"]="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36 Edg/102.0.1245.33"
data = requests.get(url,headers=headers)
js_data= data.json()
报错的是
raise RequestsJSONDecodeError(e.msg, e.doc, e.pos)
requests.exceptions.JSONDecodeError: : 0 代码和报错都贴全。 报错大概是说JSON 编码问题 把代码和报错发全些吧
页:
[1]