文章目录 2.1 类、接口和函数2.1.1 类和接口的注释写在类声明(class ClassName:)所在行的下一行,并向后缩进4个空格2.1.2 公共函数的注释写在函数声明(`def FunctionName(self):`)所在行的下一行,并向后缩进4个空格2.2 属性2.2.1 公共属性的注 ...
分类:
编程语言 时间:
2021-07-12 17:57:04
阅读次数:
0
2021年7月10日22:44:49 trait zx { // const sss = 9; public static function tt() { echo 'tt'; } public function yy() { echo 'yy'; } } class uu { use zx; co ...
分类:
Web程序 时间:
2021-07-12 17:56:00
阅读次数:
0
定义一个类实现ApplicationRunner接口,然后Override这个ApplicationRunner接口的run方法 @Component public class TaskRunner implements ApplicationRunner { public static final ...
分类:
编程语言 时间:
2021-07-12 17:55:04
阅读次数:
0
search.htm 搜索结果模板文件 分页标签 {dede:pagelist listsize=4} 改成 {dede:pagelist listsize=4 runphp=yes} @me = (strpos(@me,'0条') ? "<p style='color:#f00;'>没有相关记录< ...
分类:
其他好文 时间:
2021-07-12 17:54:49
阅读次数:
0
1.使用python对文件进行读写,使用open函数 open函数专门用来打开文件 open(文件名,打开模式,encoding='utf-8') 打开模式此处只说明以下几种 r:只读模式, w:写入, a:追加写入,不支持读 wb:以二进制模式打开写入 rb:以二进制只读打开 ab:追加写入,以二 ...
分类:
编程语言 时间:
2021-07-12 17:53:01
阅读次数:
0
Hexo部署过程中可能会出现错误 fatal: unable to access 'https://github.com/a956551943/a956551943.github.io/': Encountered end of file FATAL { err: Error: Spawn fail ...
分类:
其他好文 时间:
2021-07-12 17:48:17
阅读次数:
0
当它们一起使用时,一般select长度是默认的,会比input短,只需要设置其宽度是100%即可。 .el-form-item .el-select { width: 100%; } 同理,el-date-picker也是类似的,但有所差别。 给其设置class, <el-date-picker v ...
分类:
其他好文 时间:
2021-07-12 17:46:58
阅读次数:
0
场景 Openlayers中加载Geoserver切割的EPSG:900913离线瓦片地图并显示: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/118492511 在此基础上进行添加图层显示,当同一个位置由多个图层时就会有图层遮 ...
分类:
其他好文 时间:
2021-07-12 17:46:33
阅读次数:
0
上一篇升级版,转换文件内容。 #!/user/bin env python # author:Simple-Sir # time:2021/7/9 23:32 def txt_2_list(filename): dic = {} dic_k = [] dic_v = [] with open(fil ...
分类:
编程语言 时间:
2021-07-09 17:54:52
阅读次数:
0
LeetCode剑指offer二叉树系列 07 重建二叉树 题目 输入某二叉树的前序遍历和中序遍历的结果,请重建该二叉树。假设输入的前序遍历和中序遍历的结果中都不含重复的数字。 例如,给出 前序遍历 preorder = [3,9,20,15,7] 中序遍历 inorder = [9,3,15,20 ...
分类:
其他好文 时间:
2021-07-09 17:52:48
阅读次数:
0