代码拉取完成,页面将自动刷新
# 该Djiango 项目的URL声明文件
"""darknet_djiango URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.1/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from . import view
from . import darknet
urlpatterns = [
# url 可以接受四个参数,分别是两个必选参数regex,view和两个可选的参数 kwargs、name
# regex 正则表达式,与之匹配的url会执行第二个参数view
# view 用于执行匹配的url请求
# kwargs 视图使用的字典类型参数
# name 用来反向获取url
# name 用来反向获取url
path('hello/', view.hello ),
path('darknet/', darknet.performDetect),
]
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。