博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
flask处理网页时间
阅读量:6826 次
发布时间:2019-06-26

本文共 580 字,大约阅读时间需要 1 分钟。

如果Web程序的用户来自于世界各地,我们就需要合理的处理不同地区的日期和时间(不过估计也就自己看看,但是梦想还是有的)

服务器使用的UTC(协调世界时),我们就只想看到现在几点。解决时间的最好方法是把时间单位发送给Web浏览器,转换成当地时间,然后渲染。

hello.py 引入扩展

from flask.ext.moment import Momentmoment = Moment(app)

templates/base.html:引入moment.js

{% block scripts%}{
{ super() }}{
{ moment.include_moment() }}{% endblock %}

hello.py:加入datetime变量

from datetime improt datetime@app.route('/')def index():    return render_templates('index.html',current_time=datetime.uctnow())

templates/index.html:使用Flask-Moment渲染时间戳

The local date and time is {

{ moment(current_time).format('LLL'). }}

转载地址:http://nqykl.baihongyu.com/

你可能感兴趣的文章
关于二进制的利用
查看>>
bzoj 1922: [Sdoi2010]大陆争霸
查看>>
进程关系
查看>>
非阻塞套接字实现并发处理
查看>>
[leetcode] 一些会的
查看>>
iOS的属性声明:retain和strong的区别
查看>>
家宝贝项目历程之二
查看>>
//11个整数的手机号码正则式 phoneNumber(String number)
查看>>
Android控件系列之RadioButton&RadioGroup
查看>>
Android之Handler用法总结
查看>>
负载均衡技术全攻略
查看>>
java访问WEB-INF文件夹下的页面Bug
查看>>
多年收集的一些稀有软件1
查看>>
性能计数器与profiler的组合性能诊断
查看>>
Java中native关键字[转]
查看>>
C: printf参数执行顺序与前置后置自增自减的影响
查看>>
【数论数学】扩展欧拉定理
查看>>
windows phone8 相比windows phone7中不同
查看>>
网站压力测试工具----webbench
查看>>
[转] Vue + Webpack 组件式开发(练习环境)
查看>>