今天写django项目时,总是没有很好的处理办法,在此记录一下大佬的写法 # models里使用即可from django.db.models import BooleanField as _BooleanField class BooleanField(_BooleanField): def ge ...
分类:
其他好文 时间:
2021-05-24 11:12:37
阅读次数:
0
如果要限制关键字参数的名字,就可以用命名关键字参数,例如,只接收city和job作为关键字参数。 这种方式定义的函数如下: def person(name, age, *, city, job) print(name, age, city, job) # 调用 person('city', 22, ...
分类:
编程语言 时间:
2021-05-24 11:07:39
阅读次数:
0
谷歌地球 https://www.google.com/earth/ 谷歌地球(Google Earth,GE)是一款谷歌公司开发的虚拟地球软件,Google Earth来源于Keyhole(锁眼)公司自家原有的旗舰软件。在Google Earth Pro通过拖动时光机功能可以查看不同时期的历史数据 ...
分类:
其他好文 时间:
2021-05-24 09:52:40
阅读次数:
0
查看当前系统JupyterLab支持的所有字体 from matplotlib.font_manager import FontManager mpl_fonts = set(f.name for f in FontManager().ttflist) print('all font list ge ...
分类:
其他好文 时间:
2021-05-04 16:05:28
阅读次数:
0
需求: 根据不同的账号登录进来显示不同的数据,如:服务器列表,A项目的人员登录只能看到自己项目的服务器数据,超级管理员能看到所有项目的数据。 @method_decorator(login_wrapper, name='dispatch') class UATSITServerInfoList(ge ...
分类:
其他好文 时间:
2021-04-30 12:18:25
阅读次数:
0
1、什么是 Generator 函数 在Javascript中,一个函数一旦开始执行,就会运行到最后或遇到return时结束,运行期间不会有其它代码能够打断它,也不能从外部再传入值到函数体内 而Generator函数(生成器)的出现使得打破函数的完整运行成为了可能,其语法行为与传统函数完全不同 Ge ...
分类:
其他好文 时间:
2021-04-30 12:12:55
阅读次数:
0
参考: https://www.cnblogs.com/delav/p/11118555.html fatal: remote origin already exists.解决方法 https://blog.csdn.net/u014712086/article/details/107005216/ ...
分类:
其他好文 时间:
2021-04-26 13:43:48
阅读次数:
0
#!/usr/bin/env python # -*- coding:utf-8 _*- """ @author:zhoutao @file: 金山 V8 终端安全系统 默认弱口令漏洞.py @time: 2021/04/20 @function: """ import requests impor ...
分类:
其他好文 时间:
2021-04-22 15:22:34
阅读次数:
0
####1.准备站点目录 for i in {android,iphone,firefox,chrome,default} ;do mkdir /html/terminal/${i} && echo $i >/html/terminal/${i}/index.html ;done ####2.准备配 ...
分类:
Web程序 时间:
2021-04-21 12:00:37
阅读次数:
0
前言 对于运行中的系统,可以说百分百的小伙伴会经常遇见以下问题: 网络不通,突然又好了; 服务器宕机了; 调用服务接口超时了; 调用接口报错啦; 通讯信息发送失败需要重发; 以上只是列举了一些常遇到的问题,对于一些小项目可能简单的处理一下就OK了(比如重启或是重新发布),而对于微服务架构的项目,可能 ...
分类:
其他好文 时间:
2021-04-21 11:46:44
阅读次数:
0