#F

flask如何实现https以及自定义证书的制作

http://blog.csdn.net/yannanxiu/article/details/70672744http://blog.csdn.net/yannanxiu/article/details/70670225...

flask及扩展源码解读

先放几篇文章http://www.jianshu.com/p/adbea1783e2bhttp://blog.csdn.net/github_39605023/article/details/76020401https://gxnotes.com/article/98739.htmlhttps://liuliqiang...
代码星球 ·2020-04-06

响应头里的"Last-Modified"值是怎么来的?

1、如图所示,app.js文件得到的响应头的"Last-Modified"数值是:Mon,09Sep201309:18:22GMT   我们查看服务器上的app.js文件的修改时间,对比一下,是不是很接近呢?  2、python获取文件时间属性的方法:>>&...

flask的session解读及flask_login登录过程研究

  #!/usr/bin/envpython#-*-coding:utf-8-*-fromitsdangerousimportURLSafeTimedSerializerfromflask.sessionsimportTaggedJSONSerializerimporthashlibs=URLSaf...

Chrome的Waterfall

参考:1、https://developers.google.com/web/tools/chrome-devtools/network-performance/reference#timing2、http://www.mamicode.com/info-detail-1015625.html浏览器根据html中外连资...
代码星球 ·2020-04-06

flask调试代码更改、模板更改后立即生效

1、app.DEBUG=True时,代码更改后立即生效2、APP.jinja_env.auto_reload=True时,模板修改后立即生效,无需重启 参考:https://stackoverflow.com/questions/9508667/reload-flask-app-when-template-f...

flask的session研究和flask-login的session研究

1、httpie的安装:https://github.com/jakubroztocil/httpie#macos2、http://python.jobbole.com/87450/3、http://cizixs.com/2017/03/08/flask-insight-session4、https://liuliqi...

form的action属性作用

一、action=""和action="#"、没有action属性的作用相同,都是提交到当前页面(也就是document.location.href)二、action="currentPage.xxx":如果currentPage.xxx表示当前页面,则提交到当前页面,同事跳转到当前页面,当然就看不到url的变化;如果...
代码星球 ·2020-04-06

form表单只提交数据而不进行页面跳转的解决方案

转载  将数据提交到saveReport(form的action指向)页面,但是页面又不进行跳转,即保持当前页面不变呢?利用jquery的ajaxSubmit函数以及form的onsubmit函数完成  一般的form提交操作写法为:<formaction="saveReport.htm"method="post...

jquery的confirm插件介绍

参考:1、http://craftpip.github.io/jquery-confirm/        2、http://www.bootcdn.cn/jquery-confirm/readme/    3、http...
代码星球 ·2020-04-06

CentOS release 6.6 (Final)如何安装firefox和chromium

一、firefox的安装:1.安装remi源rpm-Uvhhttp://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm(注意:官网上源可能会有跟新变化,导致说找不到对应rpm文件,可以先在浏览器上进入http://downlo...

centos6.9安装xampp后报错:egrep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory

1、centos6.9安装xampp(xampp-linux-x64-7.0.21-0-installer.run)后启动的时候,报错:egrep:errorwhileloadingsharedlibraries:libc.so.6:cannotopensharedobjectfile:Nosuchfileordire...

Font Awesome:图标字体,完全CSS控制

FontAwesome是一种webfont,它包含了几乎所有常用的图标,比如Twitter、facebook等等。用户可以自定义这些图标字体,包括大小、颜色、阴影效果以及其它可以通过CSS控制的属性。它有以下的优点:1、像矢量图形一样,可以无限放大2、只需一种字体,同时拥有多个图标,目前支持439个图标3、无需考虑兼容...

flask-compress的使用方法以及对应的http头Vary、Content-Encoding的意思

参考:https://github.com/shengulong/flask-compress 1、Content-Encoding是HTTP协议的响应报文头,一般形式如:Content-Encoding:gzip,deflate,compress  deflate(RFC1951):一种压缩算法,使用LZ7...

flask的配置设置的几种方式

   Flask的配置对象(config)是一个字典(dict)的子类(subclass),所以你可以把配置用键值对的方式存储进去。1、一些重要的配置,可以设置在系统环境变量里,又或者放到某个服务器里,用的时候下载配置文件并读取配置#在linux系统里设置环境变量exportMAIL_USERNAME=me@...
首页上一页...13651366136713681369...下一页尾页