json|出现“json.decoder.JSONDecodeError: Expecting ‘,‘ delimiter: line 1 column 267 (char 266)”报错的解决方法

爬虫报错记录
昨天在爬虫的时候突然报错“json.decoder.JSONDecodeError: Expecting ',' delimiter: line 1 column 267 (char 266)”。还以为是获取内容有问题,问了老师,才知道问题出在:
数据截取不对,json解析错误
报错
json|出现“json.decoder.JSONDecodeError: Expecting ‘,‘ delimiter: line 1 column 267 (char 266)”报错的解决方法
文章图片
出错的代码
json|出现“json.decoder.JSONDecodeError: Expecting ‘,‘ delimiter: line 1 column 267 (char 266)”报错的解决方法
文章图片

详细分析:数据截取不对,也就是我在end=html.find('"}}')进行截取时,被截取数据前面还有这样的'"}}'字符,所以我并来没有将所需数据完整地截下,导致数据格式不对,于是下面进行json.loads()的时候,就出现了解析错误。
解决方法:在end=html.find('挑选:"}}'),也就是多加一些结尾的字符,让截取定位正确,截取完整。
【json|出现“json.decoder.JSONDecodeError: Expecting ‘,‘ delimiter: line 1 column 267 (char 266)”报错的解决方法】注:uu们如果不知道怎么出的问题,在排错时可以先对上面抓取到的信息进行print,如果print没有问题的话,就可以尝试print截取内容,先不用json解析,看看截取内容是否完整。

    推荐阅读