树形数据 let list = [ { id: 1, pid: 0, path: '/home', title: '首页', name: 'Home' }, { id: 2, pid: 0, path: '/student', name: 'Student', title: '招生管理' }, { ...
分类:
其他好文 时间:
2021-03-15 10:59:22
阅读次数:
0
文件备份与重命名 # 2种方式打开文件、备份文件、 import os # 打开文件 class FileOpen: @staticmethod def file_open1(file): fp = open(file, "w+", encoding="utf-8") # 无需flush,因为clo ...
分类:
其他好文 时间:
2021-03-15 10:54:22
阅读次数:
0
1、将函数存储在模块里 def fun1(x): ## 在模块module1.py中定义三个函数 print(x.upper()) def fun2(x): print(x.title()) def fun3(x): print(" ",x) 2、测试能否直接调用函数 >>> fun1("aaa") ...
分类:
编程语言 时间:
2021-03-15 10:39:46
阅读次数:
0
完美解决JavaIO流报错 java.io.FileNotFoundException: F:\ (系统找不到指定的路径。) 错误原因 读出文件的路径需要有被拷贝的文件名,否则无法解析地址 源代码(用于拷贝) package com.javase.IO.Stream; import org.juni ...
分类:
编程语言 时间:
2021-03-15 10:32:58
阅读次数:
0
linux/sdk/out/system/tdGUI/output/rules.mk %.d: %.c $(CONFIG_H_FILE) - @$(CC) -MM $(EXECFLAGS) $(LIBCFLAGS) $(CFLAGS) $(EXTRACFLAGS) $< | sed -e 's,^[ ...
分类:
其他好文 时间:
2021-03-12 12:40:52
阅读次数:
0
1、我在negut管理包中安装了相关包,但是一直不能显示中文 其他文章都说的是fileinput_locale_zh.js文件是中文包,但是我找遍所有文件都没有找到。 实际上安装完成后的语言包在~/Scripts/locales下 <link href="~/Content/bootstrap.mi ...
分类:
其他好文 时间:
2021-03-11 11:44:40
阅读次数:
0
html构造表单 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <form method="post" action="upload_file.php" enctype="mul ...
分类:
Web程序 时间:
2021-03-11 10:30:42
阅读次数:
0
1、 >>> def a(first,meddle,last): b = f"{first} {meddle} {last}" return b.title() >>> a("aaa","bbb","ccc") 'Aaa Bbb Ccc' >>> a("aaa","bbb") ## 少一个实参报错 ...
分类:
编程语言 时间:
2021-03-10 13:42:12
阅读次数:
0
在JSP页面头部添加如下代码: <% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.get ...
分类:
Web程序 时间:
2021-03-10 13:06:37
阅读次数:
0
var filePath = @"c:\doc\1.txt"; var dirPath1 = @"c:\music\"; var dirPath2 = @"c:\movie"; #路径拼接 Console.WriteLine(Path.Combine(dirPath1, "a.mp3")); //c ...