书栈网 · BookStack 本次搜索耗时 0.066 秒,为您找到 1864 个相关结果.
  • The Request Context

    The Request Context Purpose of the Context Lifetime of the Context Manually Push a Context How the Context Works Callbacks and Errors Teardown Callbacks Signals Notes On Pro...
  • 流内容

    流内容 基本用法 模板中的流内容 情境中的流内容 流内容 有时候你会需要把大量数据传送到客户端,不在内存中保存这些数据。当你想把运行中产生的数据不经过文件系统,而是直接发送给客户端时,应当怎么做呢? 答案是使用生成器和直接响应。 基本用法 下面是一个在运行中产生大量 CSV 数据的基本视图函数。其技巧是调用一个内联函数生成数据,把这个函...
  • Application Errors

    Application Errors Error Logging Tools Error handlers Registering or, without the decorator Handling Generic Exception Handlers Unhandled Exceptions Logging Debugging Appl...
  • Framework Integration

    Framework Integration Flask Django Bottle Web.py Tornado Wheezy.web Falcon Pyramid CherryPy Sanic FastAPI Other frameworks Framework Integration For web application...
  • 处理表单

    处理表单 Flask-WTF CSRF 保护和验证 使用 CSRF 令牌保护 AJAX 调用 自定义验证 渲染表单 摘要 处理表单 表单是让用户与我们的网页应用程序交互的基本元素。Flask 本身并不会帮助我们处理表单,但是 Flask-WTF 扩展让我们在我们的 Flask 应用程序中使用流行的 WTForms 包。这个包使得定义...
  • Chapter 10: Email Support

    Introduction to Flask-Mail Flask-Mail Usage A Simple Email Framework Requesting a Password Reset Password Reset Tokens Sending a Password Reset Email Resetting a User Passwor...
  • 大型应用作为一个包

    大型应用作为一个包 简单的包 使用蓝图 大型应用作为一个包 假设有一个简单的应用结构如下: / yourapplication yourapplication . py / static style . css / templates layout . html ...
  • The Request Context

    The Request Context Purpose of the Context Lifetime of the Context Manually Push a Context How the Context Works Callbacks and Errors Teardown Callbacks Signals Notes On Pro...
  • API

    API¶ Application Object¶ Command Line Interface¶ API¶ This part of the documentation covers all the interfaces of Flask. Forparts where Flask depends on external libraries, w...
  • 配置

    配置 配置 在配置好应用后所有需要做的就是实例化一个 Babel 对象: from flask import Flask from flask . ext . babel import Babel app = Flask ( __name__ ) app . config . from_pyfile ( '...