URL配置(URLconf)就像Django 所支撑网站的目录。它的本质是URL与要为该URL调用的视图函数之间的映射表;你就是以这种方式告诉Django,对于客户端发来的某个URL调用哪一段逻辑代码对应执行. 简单的路由配置 from django.urls import path,re_path ...
分类:
Web程序 时间:
2021-01-27 14:03:50
阅读次数:
0
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="true" sslProtocol="TLS" keystor ...
分类:
其他好文 时间:
2021-01-25 11:20:14
阅读次数:
0
LaTeX is a markup language for describing a document. To Install Tex Live LaTeX distribution : sudo dnf install texlive-scheme-full LaTeX Editors : su ...
分类:
其他好文 时间:
2021-01-25 11:19:41
阅读次数:
0
1,在views 中定义一个接口(随便定义) 2,接口实例如下:(index是接口返回HTTPResponse,get_all_url是触发搜集url的函数) def index(request): from demo.urls import urlpatterns # 导入总路由的urlpatte ...
分类:
Web程序 时间:
2021-01-13 11:36:17
阅读次数:
0
定义 定义虽然基本没有屌用,因为大部分人都看不懂,但是还的说出来。。。 The intent of the Builder design pattern is to separate the construction of a complex object from its representati ...
分类:
其他好文 时间:
2021-01-12 10:43:10
阅读次数:
0
一、打开IDEA 二、点击Fils>点击Settings 三、点击Editor>点击Color Scheme>点击选择主题颜色 四、点击Classic Light即可设置白色主题 五、点击Material Darker即可设置黑色主题 ...
分类:
其他好文 时间:
2021-01-08 10:28:42
阅读次数:
0
1. 将爬虫的类从scrapy.Spider变成scrapy_redis.spiders.RedisSpider;或者是从scrapy.CrawlSpider变成scrapy_redis.spider.RedisCrawlSpider。 2. 将爬虫中的start_urls删掉,增加一个redis_ ...
分类:
其他好文 时间:
2021-01-05 11:15:34
阅读次数:
0
Hadoop3 No FileSystem for scheme "hdfs" 异常信息: org.apache.hadoop.fs.UnsupportedFileSystemException: No FileSystem for scheme "hdfs" at org.apache.hadoo ...
分类:
其他好文 时间:
2020-12-31 11:55:00
阅读次数:
0
django 路由控制 一、路由匹配 路由控制所对应的py文件是urls.py,它的作用是指路,用户在前端点击对应的按钮,后端能够给前端返回一个对应的页面。当然,视图层也需要正确的视图函数代码才能够返回给前端。 url方法第一个参数是一个正则表达式 路由匹配按照正则匹配,一旦正则能够匹配到内容,会立 ...
分类:
其他好文 时间:
2020-12-23 12:45:18
阅读次数:
0
在《DarkMode(1):产品应用深色模式分析》提过,单纯反转是不行的。但是,把不需要反转的,在反转过来。或者用js,给想要反转的,加上反转样式,再对其他的做微调。这样个人觉得,开发成本是最低的@media(prefers-color-scheme:dark){//one.app{filter:invert(1)hue-rotate(180deg);img,button,.active{//fi
分类:
Web程序 时间:
2020-12-17 13:10:01
阅读次数:
6