1、提前先安装好django,然后按照下图所示创建一个工程,名字叫 mysite,如果这里有疑问,点击这里创建django工程教程:创建简单django工程
C:\Blog>django-admin startproject mysite
C:\Blog>cd mysite
C:\Blog\mysite>python manage.py runserver
You have 17 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.
Run 'python manage.py migrate' to apply them.
May 17, 2020 - 13:17:39
Django version 3.0.5, using settings 'mysite.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
C:\Blog>cd mysite
C:\Blog\mysite>python manage.py runserver
4、点击 http://127.0.0.1:8000/ 会打开这样的网页,就说明我们的django工程已经创建好了
1、执行下面的代码,创建我们的app,取名为monkey
C:\Blog\mysite>python manage.py startapp monkey
2、工程会自动创建一个monkey文件夹,如下图
3、将 “monkey” 添加在setting文件中
4、新建一个文件夹取名为templates,这里面会存放我们的HTML文件,然后配置setting文件去下图。
5、 在monkey文件夹下创建一个文件 urls.py ,先添加下面的代码
from django.conf.urls import url
from . import views
urlpatterns=[
]
6、然后更新mysite文件夹下的urls.py 文件,如下图:
1、创建一个static 文件夹,因为我们 前端会使用 BootStrap4.5 框架去设计我们的网页,所以static 文件夹中会存放我们的 BootStrap 库文件
2、编写我们的首页网页first.html ,这里先不要计较内容是什么,后面我会把工程上传CSDN上
3、这里我们把路由配置一下。
4、编写我们的first.html的视图函数:
from django.http import JsonResponse, HttpResponseRedirect
from django.shortcuts import render,redirect
from .models import *
# Create your views here.
def first(request):
return render(request,'monkey/first.html')
C:\Blog\mysite>python manage.py runserver
点击 http://127.0.0.1:8000/ 会打开这样的网页
6、我们只需要在后面添加monkey 即 :http://127.0.0.1:8000/ monkey 下面的页面就是我们的首页
1、我们设计网页的最终目的是为了,集合我们的测试工具,下面我们就添加一个小工具,下面我们新建了一个
capl_des.html 文件
2、继续添加路由。
3、编写我们的视图逻辑功能:
4、到这一步如果没报错,则点击 首页的 open
5、会打开下面的页面,这个小工具页面功能是,将doors中的test specication 转换为 capl test purpose ,不理解没关系,就是一种数据转换
6、根据步骤1-5我们还可以创建我们的第二个小工具:
7、下节我们继续讲述怎么部署到局域网上。