相比Django1.X中间件,Django2.X中的中间件使用方法做了修改。 1.定义中间件需要继承MiddlewareMixin类: from django.utils.deprecation import MiddlewareMixin class 中间件类名(MiddlewareMixin): ...
分类:
其他好文 时间:
2020-05-04 15:09:51
阅读次数:
51
html <button id="show_hide"><img src="/static/img/show.png"></button> <div id="show_hideDiv"> 隐藏/显示的区域 </div> javascript var V_show_hide = document.ge ...
分类:
编程语言 时间:
2020-05-03 00:35:28
阅读次数:
76
#include<bits/stdc++.h> using namespace std; #define int long long const int maxn = 1e5 + 10; int n, k; struct node { int a, b; } e[maxn]; bool cmp(no ...
分类:
其他好文 时间:
2020-05-02 21:15:11
阅读次数:
59
题意: n个点m条边的图,起点为1,终点为n,每一条单向边输入格式为: a,b,c //从a点到b点耗时为c 题目问你最多从起点1到终点n能经过多少个不同的点,且总耗时小于等于t 题解: 这道题我原本以为是改一下最短路去做,,,但是想不到怎么写。网上搜了搜,发现是拓扑+dp。 拓扑排序有啥用? 比如 ...
分类:
编程语言 时间:
2020-05-02 12:15:25
阅读次数:
63
When testing an error boundary, your console will be filled with console.error calls from React. Those can be a real distraction from the rest of the ...
分类:
其他好文 时间:
2020-05-01 20:34:20
阅读次数:
73
在父窗口页面代码: 1 <template> 2 <el-dialog 3 title="" 4 :visible.sync="visible" 5 width="30%" 6 class="ifr-dialog" 7 center 8 @opened="handleOpened"> 9 <div> ...
分类:
其他好文 时间:
2020-05-01 01:29:58
阅读次数:
181
所用测试数据: 1 const data = [ 2 { 3 "area_id": 5, 4 "name": "广东省", 5 "parent_id": 0, 6 }, 7 { 8 "area_id": 6, 9 "name": "广州市", 10 "parent_id": 5, 11 }, 12 ...
分类:
Web程序 时间:
2020-04-30 15:18:39
阅读次数:
86
1 fucntion ajax(url,fnSuccess,fnFaild) 2 { 3 //1,创建Ajax对象 4 if(window.XMLHttpRequest){ 5 var oAjax=new XMLHttpRequest(); 6 } 7 else 8 { 9 var oAjax=ne ...
分类:
Web程序 时间:
2020-04-30 13:23:58
阅读次数:
52
Navigation Nightmare 题目链接:virtual judge poj Farmer John's pastoral neighborhood has N farms (2 <= N <= 40,000), usually numbered/labeled 1..N. A serie ...
分类:
Web程序 时间:
2020-04-28 16:51:33
阅读次数:
64
1、进程池的作用 进程池来控制进程数目,比如httpd的进程模式,规定最小进程数和最大进程数 2、创建进程池的类Pool 如果指定numprocess为3,则进程池会从无到有创建三个进程,然后自始至终使用这三个进程去执行所有任务,不会开启其他进程 Pool([numprocess [,initial ...
分类:
编程语言 时间:
2020-04-27 21:02:25
阅读次数:
65