如题,对index这种的异常处理的解决方法有以下两种:
1、 用 try捕获处理
'''
try:
href = response.meta['href']
except INdexError:
href = 'null'
'''
2、用len()做个判断
'''
href = dlist[1] if len(dlist) > 1 else 'null'
'''
如题,对index这种的异常处理的解决方法有以下两种:
'''
try:
href = response.meta['href']
except INdexError:
href = 'null'
'''
'''
href = dlist[1] if len(dlist) > 1 else 'null'
'''