一:urls.py
二:views.py
def hello(request):
return render(request, “hello.html”)
(先不用models如下:1.HttpResponse()或者render()2.templates)
注意:创建文件夹templates,并将其标记成如下,此时文件夹会显示为紫色
三
添加model:
1.这里的设置就像mysql,Book用继承标记其是models,
b_name的类型是char,约束是max_length=16
b_price 的类型是float,约束为default=1
默认是有id,且自增
2.要想book在Database中显示,要生成迁移,然后执行迁移
2.1生成迁移
执行完指令发现,migrations中多了0001_initial.py(该文件不能修改)
2.2 执行迁移
此时发现右边的Database多了想要的数据库
四:返回views.py
五:templates
用python manage.py runserver执行,看结果