最赞回答 / 天涯明月笙
alarido commented on 22 Aug 2016I had to remove the following files to solve the problem:/usr/local/lib/python2.7/dist-packages/django/templatetags/future.py /usr/local/lib/python2.7/dist-packages/django/templatetags/future.pyc 参考链接:https://github.com/d...
2017-02-10
讲师回答 / 杜秉轩
Python中我们通常会用这么两种方法来获取字典里具体的某个值,一个是直接dict[key],另一个是dict.get(key, default)。get方法中的default,是指如果key不存在,则输出这个default。我们的代码中,前端这个article_id键是肯定存在的,所以不会出现找不到key的情况,也就不会用哪个'0'了。这个是Python的知识,所以课程中没有仔细讲,主要目的是为了保证代码的健壮性,避免出现KeyError异常。因为平时写代码的时候我也会在某些场合习惯通过get方法来获取...
2017-01-27