书栈网 · BookStack 本次搜索耗时 0.018 秒,为您找到 9494 个相关结果.
  • Django 3.1.8 release notes

    Django 3.1.8 release notes CVE-2021-28658: Potential directory-traversal via uploaded files Bugfixes Django 3.1.8 release notes April 6, 2021 Django 3.1.8 fixes a security is...
  • Django 3.1.13 release notes

    Django 3.1.13 release notes CVE-2021-35042: Potential SQL injection via unsanitized QuerySet.order_by() input Django 3.1.13 release notes July 1, 2021 Django 3.1.13 fixes a s...
  • Django 3.2.8 release notes

    Django 3.2.8 release notes Bugfixes Django 3.2.8 release notes Expected October 5, 2021 Django 3.2.8 fixes several bugs in 3.2.7. Bugfixes Fixed a bug in Django 3.2 that ca...
  • 利用 Django 输出 CSV

    利用 Django 输出 CSV 使用 Python 的 CSV 库 输出超大 CSV 文件 使用模板系统 其它文本格式 利用 Django 输出 CSV 本文介绍如何用 Django 的视图动态输出 CSV (Comma Separated Values)。要达到目的,你可以使用 Python 的 CSV 库或 Django 的模板系统。...
  • django.contrib.postgres

    django.contrib.postgres django.contrib.postgres PostgreSQL has a number of features which are not shared by the other databases Django supports. This optional module contain...
  • Integrating Django with a legacy database

    Integrating Django with a legacy database Give Django your database parameters Auto-generate the models Install the core Django tables Test and tweak Integrating Django wit...
  • django.contrib.postgres

    django.contrib.postgres django.contrib.postgres PostgreSQL has a number of features which are not shared by the other databases Django supports. This optional module contains...
  • django.contrib.auth

    django.contrib.auth User 模型 字段 属性 方法 Manager methods AnonymousUser object Permission model 字段 方法 Group model 字段 Validators Login and logout signals Authentication...
  • 利用 Django 输出 PDF

    利用 Django 输出 PDF 安装 ReportLab 编写视图 其它格式 利用 Django 输出 PDF 本文介绍如何用 Django 的视图动态输出 PDF 文件。该功能由绝佳的开源 ReportLab Python PDF 库提供。 动态生成 PDF 文件的优点是你可以为不同的目的创建不同的自定义 PDF——例如,为不同的用户或...
  • Django 中的测试

    Django 中的测试 Django 中的测试 对现在的 Web 开发者来说,自动化测试是一个非常有用的发现 bug 的工具。你可以使用一套测试—— 测试套件 ——去解决,避免一堆的问题: 当你编写新代码时,你可以利用测试确保代码按照期望的方式运行。 当你重构或修改旧代码,你可以利用测试来确保你的修改不会使应用运行出错。 测试一个 Web 应...