目录
controllers    //存放控制方法
models         //存放模型方法
views            //存放视图模板
    index.html
    new.html
    show.html

index.py    //用户访问入口
bin.py        //程序人口
controller.py    //控制器(暂时放在根目录)
urls.py    //类似中间件
index.py
import bin

if __name__ == "__main__":
    bin.run();
View Code

相关文章:

  • 2021-07-05
  • 2021-12-01
  • 2022-03-02
猜你喜欢
  • 2021-06-26
  • 2021-08-07
  • 2022-01-18
  • 2021-06-17
  • 2022-02-13
  • 2021-10-13
  • 2021-12-22
相关资源
相似解决方案