书栈网 · BookStack 本次搜索耗时 0.020 秒,为您找到 1864 个相关结果.
  • Flask Extension Development

    Flask Extension Development Anatomy of an Extension “Hello Flaskext!” setup.py flask_sqlite3.py Initializing Extensions The Extension Code Using _app_ctx_stack Learn from Ot...
  • Flask-RESTful

    Flask-RESTful 安装 使用 Hello World 带参数的请求 参数解析 一个完整的例子 更多阅读 Flask-RESTful 在前面 ,我们介绍了 REST Web 服务,并使用 Flask 提供服务。这里,我们使用第三方库 Flask-RESTful ,它使得在 Flask 中提供 REST 服务变得更加简单。 ...
  • Flask-Cache

    Flask-Cache 安装 使用 缓存视图函数 缓存普通函数 使用 Memoization(一种缓存技术) 删除缓存 更多阅读 Flask-Cache 假设你的 Web 服务对于某些请求比较耗时,而该请求的返回结果在较短的时间内(比如 5 分钟内)都是足够有效的,这时你能想到什么方法去改善这种状况呢?缓存?对,至少这是一种提高性能的最...
  • Running a Local Flask Backend

    Flask server OS Dependencies Dependencies Logging to the browser console Frontend Assets Flask server OS Dependencies Make sure your machine meets the OS dependencies befo...
  • Tell Flask it is Behind a Proxy

    Tell Flask it is Behind a Proxy Tell Flask it is Behind a Proxy When using a reverse proxy, or many Python hosting platforms, the proxy will intercept and forward all external r...
  • Tell Flask it is Behind a Proxy

    Tell Flask it is Behind a Proxy Tell Flask it is Behind a Proxy When using a reverse proxy, or many Python hosting platforms, the proxy will intercept and forward all external r...
  • Using SQLite 3 with Flask

    Using SQLite 3 with Flask Connect on Demand Easy Querying Initial Schemas Using SQLite 3 with Flask In Flask you can easily implement the opening of database connections on d...
  • Running a Local Flask Backend

    Flask server OS Dependencies Dependencies Logging to the browser console Frontend Assets Flask server OS Dependencies Make sure your machine meets the OS dependencies befo...
  • Flask 的设计思路

    Flask 的设计思路 显式的应用对象 路由系统 唯一模板引擎 我依赖所以我微 线程本地对象 Async/await 和 ASGI 支持 Flask 是什么,不是什么 Flask 的设计思路 为什么 Flask 要这样做,而不是那样做?如果你对这点好奇,那么本节可以满足你 的好奇心。当与其他框架直接进行比较时, Flask 的设计思路乍看...
  • 配置Flask-Cache

    配置Flask-Cache 配置Flask-Cache Flask-Cache有下面一些配置项: CACHE_TYPE 指定哪些类型的缓存对象来使用。 这是一个输入字符串,将被导入并实例化。 它假设被导入的对象是一个依赖于werkzeug缓存API, 返回缓存对象的函数。 对于werkzeug.contrib.cache对象,不必给出完整的字...