Django
yuanhaididai
这个作者很懒,什么都没留下…
展开
-
django with标签使用的小细节
'with' expected at least one variable assignmentRequest Method:GETRequest URL:http://127.0.0.1:8000/Django Version:2.0.2Exception Type:TemplateSyntaxErrorException Value:'with' expected at least one v...原创 2018-04-18 14:35:34 · 2714 阅读 · 1 评论 -
Python基础知识点
###Python2与Python3编码兼容性Python2如果没有指定编码格式,默认的编码是ASCII,不进行转换会出现UnicodeDecodeError错误,为了使得Python2与3进行兼容,可以用如下代码实现:import sysfrom django.utils import sixif six.PY2 and sys.getdefaultencoding() == 'ascii...原创 2018-05-12 19:41:18 · 226 阅读 · 0 评论 -
Django Model._meta API
Model._meta API是Django ORM的核心,它使得lookups、queries、forms、admin这些模块通过每个model类的_meta的属性可以了解每个model的情况。1. 字段访问API,使用名字检索一个model的字段实例Options.get_field(field_name) 根据给出的field_name返回一个字段实例。field_name可以是model中...翻译 2018-05-13 18:17:47 · 1429 阅读 · 0 评论