书栈网 · BookStack 本次搜索耗时 0.020 秒,为您找到 377 个相关结果.
  • Uploading Files

    Uploading Files A Gentle Introduction Improving Uploads Upload Progress Bars An Easier Solution Uploading Files Ah yes, the good old problem of file uploads. The basic idea ...
  • 视图装饰器

    视图装饰器 检查登录装饰器 缓存装饰器 模板装饰器 端点装饰器 视图装饰器 Python 有一个非常有趣的功能:函数装饰器。这个功能可以使网络应用干净整洁。 Flask 中的每个视图都是一个装饰器,它可以被注入额外的功能。你可能已经用过了 route() 装饰器。但是,你有可能需要使用你自己的装饰器。 假设有一个视图,只有已经登录的用户才能使...
  • 快速入门

    快速入门 一个最小的 API 资源丰富的路由(Resourceful Routing) 端点(Endpoints) 参数解析 数据格式化 完整的例子 快速入门 是时候编写你第一个 REST API。本指南假设你对 Flask 有一定的认识,并且已经安装了 Flask 和 Flask-RESTful。如果还没有安装的话,可以依照 安装 ...
  • Uploading Files

    Uploading Files A Gentle Introduction Improving Uploads Upload Progress Bars An Easier Solution Uploading Files Ah yes, the good old problem of file uploads. The basic idea ...
  • Serve Shared Static Files

    Serve Shared Static Files Serve Shared Static Files class werkzeug.middleware.shareddata. SharedDataMiddleware (_app, exports, disallow=None, cache=True, cache_timeout=43200, ...
  • X-Forwarded-For Proxy Fix

    X-Forwarded-For Proxy Fix X-Forwarded-For Proxy Fix This module provides a middleware that adjusts the WSGI environ based onX-Forwarded- headers that proxies in front of an ap...
  • 基于令牌的认证

    基于令牌的认证 基于令牌的认证 每次请求必须发送 username 和 password 是十分不方便,即使是通过安全的 HTTP 传输的话还是存在风险,因为客户端必须要存储不加密的认证凭证,这样才能在每次请求中发送。 一种基于之前解决方案的优化就是使用令牌来验证请求。 我们的想法是客户端应用程序使用认证凭证交换了认证令牌,接下来的请求只发送认证...
  • Flask-WTF 更新历史

    Flask-WTF 更新历史 Version 0.12 Version 0.11 Version 0.10.3 Version 0.10.2 Version 0.10.1 Version 0.10.0 Version 0.9.5 Version 0.9.4 Version 0.9.3 Version 0.9.2 Version 0.9.1...
  • 用户注册

    用户注册 用户注册 在本文例子中,一个客户端可以使用 POST 请求到 /api/users 上注册一个新用户。请求的主体必须是一个包含 username 和 password 的 JSON 格式的对象。 Flask 中的路由的实现如下所示: @app . route ( '/api/users' , methods = [ 'POST...
  • Installation

    Installation Python Version Dependencies Optional dependencies greenlet Virtual environments Create an environment Activate the environment Install Flask Installation P...