codecamp

Flask 创建一个请求上下文

从 Shell 创建一个合适的上下文,最简单的方法是使用 ​test_request_context​ 方法,此方法 会创建一个 ​RequestContext​ 对象:

>>> ctx = app.test_request_context()

一般来说,您可以使用 with 声明来激活这个请求对象, 但是在终端中,调用 ​push()​ 方法和 ​pop()​ 方法 会更简单:

>>> ctx.push()

从这里往后,您就可以使用这个请求对象直到您调用 pop 方法为止:

>>> ctx.pop()
Flask 用蓝图构造URL
Flask 激发请求发送前后的调用
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }