随笔分类 - Flask Web Application Framework
A micro python web application framework
摘要:I spent several days on building a system about this. And make it work well with serveral thousand lines of codes.
阅读全文
摘要:please follow the tutorial from the official site :) http://flask.pocoo.org/docs/You could download the zipped file from this site : 下载离线版doc ,将更加方便查看。You can download the documentation in other formats as well:as PDFas ePubas .mobias zipped HTML要搭建博客,就需要至少有几个工具。1、搭建博客的工具——————python,建议搭配virtualen..
阅读全文
摘要:真是很好的东西,有很多有益处的东西。有template引擎,有flask自己带的g (用来处理访问与数据库打开关闭的)有flask自己的处理session的功能自带的jinja2模板引擎也是比较容易懂的。语法也不是很难。模板引擎设计比较科学,也比较符合python之道。即便是博客,也要了解博客的关系。还是比较给力的。提交表单后--》数据发送到数据库--》然后返回一个页面还是原来的带有表单的页面,不过这个表单的页面里面又实打实地是从数据库中取到的数据。在数据库中已经在表单提交的过程后被添加了。很有机的结合在一起。运用模板引擎的extend 拼接够能,能让多个模板相互继承,这真是jinja2的给力
阅读全文