随笔分类 - django
概念-逻辑-坑
摘要:1.在settings使用例子 LOGGING = { 'version': 1, 'disable_existing_loggers': False, 'formatters': { 'simple': { # exact format is not important, this is the
阅读全文
摘要:1. 部署蓝鲸https://www.cnblogs.com/you-men/p/13416827.htmlv 2. 安装django mkdir ~/.virtualenvs python3 -m venv ~/.virtualenvs/djangodev python -m venv ~/.vi
阅读全文
摘要:0. Django适合做什么? Django的MTV架构 1.Question是一个model,Choice包含一个与Question相关的外键字段 2.Choice自动生成一个字段,称为foo_set - 与Question实例相关的对象的查询集,例如q.choice_set.all()。 1.
阅读全文
摘要:1.django - foreignkey(othermodel,on_delete=models.CASCADE) on_delete 在外键中必须设置,表示级联关系,在django1.x下,系统默认提供,2.x下,必须手动明确 model.CASCADE:意思是你没有了,我也会跟着没有 级联 例
阅读全文
摘要:1.alias虚拟目录配置下,访问http://www.colorgg.com/huan/a.html实际指定的是/home/www/huan/a.html 示例一 location /huan/ { alias /home/www/huan/; }alias指定的目录后面必须要加上"/",即/ho
阅读全文