cookie 获取Cookie request.COOKIES['key'] request.get_signed_cookie(key, default=RAISE_ERROR, salt='', max_age=None) 参数: default: 默认值 salt: 加密盐 max_age: ...
分类:
其他好文 时间:
2021-04-10 13:36:23
阅读次数:
0
本场链接:Codeforces Round #712 (Div. 2) A. Déjà Vu 签到题,尝试一下插入首位元素或者插入第一个不是a的位置.两者都不行必然是NO. #define _CRT_SECURE_NO_WARNINGS #include <bits/stdc++.h> using ...
分类:
其他好文 时间:
2021-04-06 14:34:27
阅读次数:
0
1.1 形参与实参 形参(形式参数):在定义函数阶段,定义的参数称之为形参,粗略的可以认为是变量名。 实参:在调用函数阶段传入的值称之为实际参数,简称实参,粗略的可以认为是变量值。 def ware_info(vendor_name, store_name, sku): return "{}商家下的 ...
分类:
其他好文 时间:
2021-04-05 12:43:51
阅读次数:
0
1 MySQL 1.1 安装 在root用户权限下 # 创建mysql用户和用户组,同时禁止登陆 shell> groupadd mysql shell> useradd -r -g mysql -s /bin/false mysql # tar解压mysql压缩包,同时把他移到你向安装的位置 sh ...
分类:
数据库 时间:
2021-04-01 13:30:26
阅读次数:
0
进入到/etc/fdfs目录下 修改storage的配置文件 vi storage.conf # 修改组名 group_name= group1 #自定义组名 # 修改storage的工作空间 base_path=/usr/local/fastdfs/storage # 修改storage的存储空间 ...
分类:
其他好文 时间:
2021-03-30 13:23:37
阅读次数:
0
#define _CRT_SECURE_NO_DEPRECATE #include <stdio.h> int main() { int num; scanf("%d", &num); printf("2049%04d\n", num); scanf("%d", &num); printf("204 ...
分类:
编程语言 时间:
2021-03-29 12:27:05
阅读次数:
0
目录 引子 正文 公民:actions、action 创建者、reducers 和 store Actions and action 创建者 Store Reducers 状态设计 状态形态 Reducers 合并 归一化 常见模式 选择器 鸭子/模块 状态机 常见陷阱 不要为不同的目的复用相同的异 ...
分类:
其他好文 时间:
2021-03-29 12:15:26
阅读次数:
0
一、环境准备: 1. python 版本,Microsoft Store 直接安装的: D:\Documents\python lab\python\python_switch>python Python 3.8.0 (tags/v3.8.0:fa919fd, Oct 14 2019, 19:37: ...
分类:
其他好文 时间:
2021-03-18 14:15:20
阅读次数:
0
一 结果图示 二 代码 头文件 #ifndef CPROGRESS_H #define CPROGRESS_H #include <QWidget> #include <QPainter> #include <QDebug> #include <qmath.h> class CProgress : ...
分类:
其他好文 时间:
2021-03-17 15:07:57
阅读次数:
0
Vue下的watch监听 2018-10-15 本文记录一下项目中的watch的用法 watch监听全局的projectCode 12345678910111213141516171819202122232425262728 mounted() { this.$nextTick(() => { // ...
分类:
其他好文 时间:
2021-03-16 13:59:27
阅读次数:
0