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

    Django FAQ Django FAQ FAQ: General Why does this project exist? What does “Django” mean, and how do you pronounce it? Is Django stable? Does Django scale? Who’s behind th...
  • Django at a glance

    Django at a glance Design your model Install it Enjoy the free API A dynamic admin interface: it’s not just scaffolding – it’s the whole house Design your URLs Write your view...
  • Django on Jython

    Django on Jython Django on Jython Jython is an implementation of Python that runs on the Java platform (JVM). If you want to use Jython (which supports only Python 2.7 at the...
  • Django Exceptions

    Django Exceptions Django Core Exceptions AppRegistryNotReady ObjectDoesNotExist EmptyResultSet FieldDoesNotExist MultipleObjectsReturned SuspiciousOperation PermissionDenied ...
  • 初识 Django

    初识 Django 设计模型 创建模型 享用便捷的 API 动态生成的管理页面:并非徒有其表 规划 URL 编写视图 设计模板 这只是冰山一角 初识 Django Django 最初被设计用于具有快速开发需求的新闻类站点,目的是要实现简单快捷的网站开发。以下内容简要介绍了如何使用 Django 实现一个数据库驱动的 Web 应用。 ...
  • Django admin

    Django admin Django admin To add, edit and delete the posts we’ve just modeled, we will use Django admin. Let’s open the blog/admin.py file and replace its contents with this...
  • Django模板

    1318 2018-05-13 《Django Girls 教程》
    Django模板 什么是模板标签呢? 展现文章列表模板 还有一件事 Django模板 是时候把数据展示出来了!Django提供了一个非常有用的内置来实现-—|-模板标签 什么是模板标签呢? 正如你在前面章节中所了解的那样, 我们并不能将 Python 代码嵌入到HTML中。 因为浏览器不能识别 Python 代码, 它只能解析HTML。...
  • 安装 Django

    安装 Django 安装官方发布版 安装Trunk版本 安装 Django 任何时候,都有两个不同版本的Django供您选择。 最新的官方发行版和有风险的主干版本。 安装的版本取决于您的优先选择。 你需要一个稳定的通过测试的Django,或是你想要包括最新功能的版本,也许你可对Django本身作贡献,而把稳定作为代价? 我们推荐选定一个正式发布...
  • Django FAQ

    Django FAQ Django FAQ FAQ: 概述 FAQ:安装 FAQ: 使用Django FAQ: 获取帮助 FAQ:数据库和模型 FAQ: 管理 FAQ: 贡献代码 错误调试
  • Testing in Django

    Testing in Django Testing in Django Automated testing is an extremely useful bug-killing tool for the modernWeb developer. You can use a collection of tests — a test suite — t...