我在 Django 中有这个错误页面。
Exception Type: IndexError
Exception Value: list index out of range
Exception Location: /home/nirmal/try/portfolio/views.py in vimeo_authorize, line 52
我需要的是我只想在我的观点中排除这个错误。我试过这样:
try:
.........
except IndexError:
.........
但它不起作用。谁能给我正确的代码?
谢谢!