美文网首页
django使用相关命令和笔记

django使用相关命令和笔记

作者: 辰若寒 | 来源:发表于2018-01-20 11:06 被阅读2次

    1、django新建一个项目,下面的命令就是新建了一个名为demo的项目

    $ django-admin startproject demo

    2、进入demo文件夹,会有一个manage.py的文件,使用下面命令启动web项目

    $ python manage.py runserver

    3、配置链接数据库(自带的sqlite3)

    $ python manage.py migrate

    4、在项目中新增一个app

    $ python manage.py startapp blog

    5、完成模型构建后,映射到数据库,生成数据表

    $ python manage.py makemigrations blog

    $ python manage.py migrate

    6、django的sqlite3可视化工具SQLiteStudio

    https://sqlitestudio.pl/index.rvt

    7、django的html显示富文本标签

    增加了格式的页面在浏览时显示了html语法,需要关闭html转义,

    方法是在模板中修改:

    将{{ article.content }}修改为

    {{ article.content|safe }},

    另一种方法是:

    {% autoescape off %}

    {{ article.content }}

    {% endautoescape %}

    相关文章

      网友评论

          本文标题:django使用相关命令和笔记

          本文链接:https://www.haomeiwen.com/subject/knozoxtx.html