书栈网 · BookStack 本次搜索耗时 0.120 秒,为您找到 1836 个相关结果.
  • Overview

    Overview Is This for Me? Is This Really for Me? The Big Picture (Literally) Prerequisites Overview Is This for Me? Are you creating a web application/backend API micros...
  • Security Considerations

    Security Considerations Cross-Site Scripting (XSS) Cross-Site Request Forgery (CSRF) JSON Security Security Headers HTTP Strict Transport Security (HSTS) Content Security Polic...
  • API

    API Application Object Blueprint Objects Incoming Request Data Response Objects Sessions Session Interface Test Client Test CLI Runner Application Globals Useful Functions...
  • API

    API Application Object Blueprint Objects Incoming Request Data Response Objects Sessions Session Interface Test Client Test CLI Runner Application Globals Useful Functions...
  • Deploying with Setuptools

    Deploying with Setuptools Basic Setup Script Tagging Builds Distributing Resources Declaring Dependencies Installing / Developing Deploying with Setuptools Setuptools , is...
  • Define and Access the Database

    Define and Access the Database Connect to the Database Create the Tables Register with the Application Initialize the Database File Define and Access the Database The appli...
  • 运行测试用例

    运行测试用例 使用 unittest 使用 nose 运行测试用例 使用 unittest 一开始我建议把所有的测试放在一个文件里面,这样你可以使用 unittest.main() 函数。这个函数将会发现在你的 TestCase 类里面的所有的测试方法。请记住,所有的测试方法和类请以 test 开头(不区分大小写),这样才能被自动识别出...
  • 资源管理

    资源管理 管理、压缩、缩小网站资源的工具。 django-compressor:将链接和内联的 JavaScript 或 CSS 压缩到一个单独的缓存文件中。官网 django-storages:一个针对 Django 的自定义存储后端的工具集合。官网 fanstatic:打包、优化,并且把静态文件依赖作为 Python 的包来提供。官网 Fi...
  • 第15章 优化应用结构

    目前的局限性 Blueprints 错误处理Blueprint 用户认证Blueprint 主应用Blueprint 应用工厂模式 单元测试的改进 环境变量 依赖文件 本文翻译自The Flask Mega-Tutorial Part XV: A Better Application Structure 这是Flask Mega-Tu...
  • 配置你的应用

    配置你的应用 配置你的应用 对一个使用 Flask-Login 的应用最重要的一部分就是 LoginManager 类。你应该在你的代码的某处为应用创建一个,像这样: login_manager = LoginManager () 登录管理(login manager)包含了让你的应用和 Flask-Login 协同工作的代码,比如...