学知识拯救世界 发表于 2020-12-22 15:54:23

其中的response = response.json()总是报错,请问下大家为什么?

# 导入包
import requests
import json

if __name__ == '__main__':
    # 1.
    url = 'https://movie.douban.com/tag/#/?sort=S&range=0,10&tags=%E5%96%9C%E5%89%A7'
    param = {
      'sort': 'S',
      'range': ' 0, 10',
      'tags': '',
      'start': ' 40',
      'genres': ' 喜剧',
    }
    headers = {
      'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36'
    }
    response = requests.get(url=url,params=param,headers = headers)
    response = response.json()
    with open('./豆瓣.json','w',encoding = 'utf-8') as f:
      json.dump(response,fp = f,ensure_ascii=False)
    print(response)
    print('over')
其中的response = response.json()总是报错,请问下大家为什么?

super_niu 发表于 2020-12-22 16:02:13

起码截图发下报错吧。。。

学知识拯救世界 发表于 2020-12-22 16:14:48

错误截图

学知识拯救世界 发表于 2020-12-22 16:15:24

super_niu 发表于 2020-12-22 16:02
起码截图发下报错吧。。。

你好,我把截图发下

YunGuo 发表于 2020-12-22 23:38:28

数据接口错误。接口是这个:https://movie.douban.com/j/new_search_subjects?

import requests


url = 'https://movie.douban.com/j/new_search_subjects?'
header = {
    'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 '
                  '(KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36'
}
params = {
    'sort': 'S',
    'range': '0,10',
    'tags': '',
    'start': 0,
    'genres': '喜剧'
}
res = requests.get(url, headers=header, params=params)
print(res.json())

z5560636 发表于 2020-12-23 09:43:28

response = response.json()
这个类型错了吧,
比喻成现实语法:
我=   我的手
用我的手替代我,你觉得有毛病吗?

学知识拯救世界 发表于 2020-12-24 11:13:14

YunGuo 发表于 2020-12-22 23:38
数据接口错误。接口是这个:https://movie.douban.com/j/new_search_subjects?

感谢,确实是接口错误
进入豆瓣页面的网址与发送请求的网址不同,十分感谢

学知识拯救世界 发表于 2020-12-24 11:14:45

z5560636 发表于 2020-12-23 09:43
response = response.json()
这个类型错了吧,
比喻成现实语法:


这种命名方式是可以的
页: [1]
查看完整版本: 其中的response = response.json()总是报错,请问下大家为什么?