python检查noee使异常

时间:2014-06-01 19:49:17

标签: python python-2.7 scrapy

我有这段代码

 if response.meta['nextPage'] is None:

我得到了这个例外:

    if response.meta['nextPage'] is None:
exceptions.KeyError: 'nextPage'

我知道response.meta没有nextPage,我只是在检查

那是什么错误?

我正在使用scthon与python

1 个答案:

答案 0 :(得分:4)

使用get字典方法:

if response.meta.get('nextPage') is None:
    ...