Python__flask初识
2018-06-18 02:45:24来源:未知 阅读 ()
1. debug:在app.run()里面加上app.run(debug=True), 在浏览器中调试的时候可以直接显示出错误.
2. 在url中传递参数,可以这样
@app.route('/chuancan/<id>') def my_post(id): return '传递的参数为:%s' %id #一定要在路由里面把传递的参数用尖括号括起来 #url可以这样 http://localhost:5000/chuancan/123 >>>传递的参数为123
3. 根据视图函数来找url地址:
from flask import url_for @app.route('/host/') def host(): pass print(url_for('host')) >>>/host/ #url_for里面传入函数名字,反回的是路由地址
4. 跳转/重定向:
from flask import redirect @app.route('/host/') def host(): return redirect('/index/') >>>访问 http://localhost:5000/host 如果有index路由,则会跳转到index页面去: http://localhost:5000/index
5. 模板:
from flask import render_template @app.route('/index/') def index(): return render_template('index.html') >>>把index.html模板文件渲染之后加载出来
6. 模板传参:
from flask import render_template @app.route('/index/') def index(): return render_template('index.html',a=1) #index.html -> 用{{ a }} 调用 >>> 1
7. jinja2 语句:
#index.html 里面
{% for foo in session %} {% endfor %} {% if session %} {% endif %} 这样用-.-
8. jinja2 过滤器,就是函数:
#index.html 里面 {{ something|default('lalala')}} #如果something这个变量没有,则用default里面的内容替代 {{names|length}} #如果names是一个列表或者字典一类的,返回它的元素个数
9. 继承模板:
#base.html <body> hahaahahahah11111111 {% block main %}{% endblock %} </body> #这是一个父模板,如果在子模版中要修改东西,可以加一个block.
#index.html {% extends 'base.html' %} {% block main %} <h1>添加的子东西</h1> {% endblock %} #这是个继承了base.html的页面,继承用extends,如果渲染完成之后是这样: >>>hahaahahahah11111111 ->父模板的 添加的子东西 ->子模板在block里面加的
10. 链接:
#index.html <a href="{{url_for(login)}}"></a> #推荐用url_for(视图函数)
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash