Django 1.9 文档阅读笔记

2016-04-04
更新记录 2016-04-04 初稿 2016-06-30 更新内容 模型 Model _meta API 限制普通字段的选择范围 choices ,value-text, 显示get_foo_display() 模型继承 抽象基类 ...
Read more

django-filter

2016-03-30
作用 django-filter提供一种简单的方式为用户提供的参数(url传参)来过滤queryset 写法 model from django.db import models class Product(models.Model)...
Read more

curl 常用命令

2015-12-17

curl是利用URL语法在命令行方式下工作的开源文件传输工具。它被广泛应用在Unix、多种Linux发行版中,并且有DOS和Win32、Win64下的移植版本。

Read more

Django 关联对象字段

2015-12-10
关联字段 ForeignKey多对一关系 class ForeignKey(othermodel[, **options]) 如果关联模型还没有创建,可以使用该模型的名字而不是模型本身来指定 options limit_chices_t...
Read more

Django 字段选项 related_name 和 related_query_name

2015-10-20

data

sqlite> select * from author;
id      name    age
1       jim     12
2       tom     11
sqlite> select * from book;
id      name    author_id
1       learn java      1
2       learn python    1
3       learn c++       2
Read more

Git stash 的简单运用

2015-10-20

当我们在分支上改代码改到一半时,突然项目发现了一个bug需要修复,这时需要切换到另一个分支进行修改,以前的做法可能是把工作区改到一半的代码先commit,然后切换分支修复bug,再切换回来继续写代码,但这样会生成很多不必要的提交,这时你就需要使用git stash命令。

Read more

Git patch 的简单运用

2015-10-15

生成PATCH

往前n个提前内容的patch

git format-patch -n

某个commit(含)的及之前的n-1次提交的patch

git format-patch -n SHA
Read more

Material Design 资源

2015-10-15

Material Design是谷歌在Google I/O 2014推出了全新的设计语言,并荣获2014年的用户体验最佳贡献金奖。

Read more
Material Design 资源