这个例子是从网上抄来的,原文中数据库应该是用的mysql,我只是学习,就改成了sqlite。废话不说了,直接上代码吧。
创建目录
1 | mkdir -p blog/templates |
后面的工作都是在blog
目录下进行的,后面所有的文件也都在该目录下。
建表
1 | create table article( |
model.py
1 | import web |
blog.py
1 | import web |
templates/base.html
1 | $def with (page) |
templates/edit.html
1 | $def with (post, form) |
templates/index.html
1 | $def with (posts, login_form) |
templates/new.html
1 | $def with (form) |
templates/view.html
1 | $def with (post) |
以上例子是经过验证了的,如果不行自己找原因。