上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
摘要: 在使用 django 的时候发现了一个 例如: 看上去也毫无问题,可是我换一个表 神奇的事情发生了.他竟然变成了 ,而且还加上了 ,而且还会报错: 报错信息如下: `ProgrammingError: column "b_f.type" must appear in the GROUP BY cla 阅读全文
posted @ 2018-10-18 10:55 两只老虎111 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 自定义字段 继承 Field 类 覆盖父类中的方法 to_representation() 调用该方法将初始数据类型转换为基本的可序列化数据类型 to_internal_value() 调用该方法将原始数据类型恢复为其内部python表示 如果字段支持数据输入,则应该进行子类化Field和覆盖to_ 阅读全文
posted @ 2018-10-15 14:42 两只老虎111 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 今天突然遇到这个异常,先贴两个地址,待有时间写博客 https://www.jianshu.com/p/fea6e0a0cc14 https://makina-corpus.com/blog/metier/2014/python-tutorial-understanding-python-mro-c 阅读全文
posted @ 2018-07-31 17:11 两只老虎111 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 参考文章 : https://blog.csdn.net/fangjian1204/article/details/50585080 阅读全文
posted @ 2018-07-30 11:36 两只老虎111 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1 class A: 2 @property 3 def name(self): 4 return "123" 5 6 7 print(A.name) # 8 9 10 class B(type): 11 @property 12 def name(cls): 13 return "123" 14 1... 阅读全文
posted @ 2018-07-26 11:40 两只老虎111 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 在翻django 代码的时候无意中看到的, 主要还是在注解时候使用 官方参考:https://docs.python.org/3/library/constants.html#Ellipsis 注意:这是一个常量 阅读全文
posted @ 2018-07-17 14:28 两只老虎111 阅读(484) 评论(0) 推荐(0) 编辑
摘要: django 获得到的请求头封装在 request 的 META 中,为一个 dict 以下选自官方文档: https://docs.djangoproject.com/zh-hans/2.0/ref/request-response/#django.http.HttpRequest.META Ht 阅读全文
posted @ 2018-07-11 11:50 两只老虎111 阅读(311) 评论(0) 推荐(0) 编辑
摘要: https://www.kancloud.cn/thinkphp/python-guide/39358 当成文件来看 阅读全文
posted @ 2018-07-03 10:46 两只老虎111 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 1 class Node: 2 ''' 3 节点类 4 链表节点结构 data next 5 data: 节点保存的数据 6 _next: 保存下一个节点对象 7 ''' 8 9 def __init__(self, data, pnext=None): 10 self.dat... 阅读全文
posted @ 2018-06-06 12:01 两只老虎111 阅读(248) 评论(1) 推荐(0) 编辑
摘要: 内容出处https://www.jianshu.com/p/a8ab13cff1ea 如有侵权请告知 移动、跳转 h、j、k、l:分别对应左、下、上、右。按键盘分布,从左到右,逆时针。 w:移动到下一个词的行首。 W:同样移动到下一个词行首。两者区别:root/usr bin,光标在r处,w移动到/ 阅读全文
posted @ 2018-05-28 11:07 两只老虎111 阅读(241) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页