reusable

Django 2.0.1 官方文档翻译: 编写你的第一个 Django app,第七部分(Page 12)

我的梦境 提交于 2020-05-01 21:25:11
编写你的第一个 Django app,第七部分(Page 12)转载请注明链接地址 本节教程承接第六部分(page 11)的教程。我们继续开发 web-poll应用,并专注于自定义django的自动生成的admin站点,这点我们在第二部分(page 7)中探讨过。 自定义admin表单 通过在 admin.site.register(Question) 中注册 Question 模型,django可以构建一个默认的表单形式。通常,你会希望自定义表单的外观和工作方式。你会在注册对象时告诉django你想使用的选项。 我们来看看编辑表单中的字段顺序是如何工作的。使用下面的代码替换 admin.site.register(Question) : # polls/admin.py from django.contrib import admin from .models import Question class QuestionAdmin(admin.ModelAdmin): fields = ['pub_date', 'question_text'] admin.site.register(Question, QuestionAdmin) 你会遵循这个模式 —— 创建一个admin类的模型,然后把它传递给 admin.site.register() 的第二个参数 ——

十、IntelliJ IDEA 中 Project 和 Module 的概念及区别

南楼画角 提交于 2020-05-01 00:24:04
在 IntelliJ IDEA 中,没有类似于 Eclipse 工作空间(Workspace)的概念,而是提出了 Project 和 Module 这两个概念。接下来,就让咱们一起看看 IntelliJ IDEA 官方是如何描述两者的吧! 对于 Project,IntelliJ IDEA 官方是这样介绍的: A project is a top-level organizational unit for your development work in IntelliJ IDEA. In its finished form, a project may represent a complete software solution. A project is a collection of: Your work results: source code, build scripts, configuration files, documentation, artifacts, etc. SDKs and libraries that you use to develop, compile, run and test your code. Project settings that represent your working preferences in the context of

接口API自动化测试(Tosca)文档地址

自作多情 提交于 2020-04-23 06:29:15
本文只是自己看官网说明文档的记录,并非教程。 如果是想用Tosca(版本13.1)做接口自动测试,包括建立API测试用例的方式,接口参数以及返回结果的验证判断,测试用例的运行等,官网有关的介绍文档如下: https://documentation.tricentis.com/tosca/1310/en/content/tbox/api_scan_create_tc.htm https://documentation.tricentis.com/tosca/1310/en/content/tosca_commander/conditional_statements.htm?Highlight=condition https://documentation.tricentis.com/tosca/1310/en/content/tbox/text_expressions.htm https://documentation.tricentis.com/tosca/1310/en/content/tosca_commander/teststep_libraries.htm https://documentation.tricentis.com/tosca/1310/en/content/tosca_commander/reusable_teststepblocks.htm 官网文档比较详细

接口API自动化测试(Tosca)文档地址

时光怂恿深爱的人放手 提交于 2020-04-23 00:38:48
本文只是自己看官网说明文档的记录,并非教程。 如果是想用Tosca(版本13.1)做接口自动测试,包括建立API测试用例的方式,接口参数以及返回结果的验证判断,测试用例的运行等,官网有关的介绍文档如下: https://documentation.tricentis.com/tosca/1310/en/content/tbox/api_scan_create_tc.htm https://documentation.tricentis.com/tosca/1310/en/content/tosca_commander/conditional_statements.htm?Highlight=condition https://documentation.tricentis.com/tosca/1310/en/content/tbox/text_expressions.htm https://documentation.tricentis.com/tosca/1310/en/content/tosca_commander/teststep_libraries.htm https://documentation.tricentis.com/tosca/1310/en/content/tosca_commander/reusable_teststepblocks.htm 官网文档比较详细