我有这段代码
if response.meta['nextPage'] is None:
我得到了这个例外:
if response.meta['nextPage'] is None:
exceptions.KeyError: 'nextPage'
我知道response.meta没有nextPage,我只是在检查
那是什么错误?
我正在使用scthon与python
答案 0 :(得分:4)
使用get
字典方法:
if response.meta.get('nextPage') is None:
...