书栈网 · BookStack 本次搜索耗时 0.021 秒,为您找到 8858 个相关结果.
  • 为 Django 做贡献

    为 Django 做贡献 为 Django 做贡献 Django是一个依赖志愿者们生存的社区。随着它的不断发展,我们总是需要更多的人去帮助别人。只要你开始学习Django,你就可以在很多方面做出贡献: Join the Django forum . This forum is a place for discussing the Django f...
  • URLconfs—Django’s Navigator

    URLconfs—Django’s Navigator URLconfs—Django’s Navigator There’s one last piece to the Django framework puzzle—the critical communication pathway that matches a request on the c...
  • Errata and Django 3 Updates

    Errata and Django 3 Updates Errata and Django 3 Updates I will be publishing errata (bugs and typos) information and updates for future versions of Django 3 on the website here...
  • Django’s security policies

    Django’s security policies Reporting security issues Supported versions How Django discloses security issues Who receives advance notification Requesting notifications Dja...
  • 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’s cache framework

    Django’s cache framework Setting up the cache Memcached Database caching Creating the cache table Multiple databases Filesystem caching Local-memory caching Dummy caching (fo...
  • Django's security policies

    Django's security policies Reporting security issues Supported versions How Django discloses security issues Who receives advance notification Requesting notifications Dja...
  • 为 Django 做贡献

    为 Django 做贡献 为 Django 做贡献 Django is a community that lives on its volunteers. As it keeps growing, wealways need more people to help others. As soon as you learn Django, you ca...
  • 利用 Django 输出 CSV

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

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