w={"navigator":"hehe"} var handler = { get(target, key,receiver){ console.log("target",target,receiver); return Reflect.has(target, key) ? Reflect.get ...
分类:
Web程序 时间:
2020-07-21 09:39:35
阅读次数:
96
抽象类 public abstract class JdbcTemplate { //template method public final Object execute(String sql) throws SQLException { Connection con = HsqldbUtil.g ...
分类:
数据库 时间:
2020-07-20 22:31:40
阅读次数:
92
Given a tree (i.e. a connected, undirected graph that has no cycles) consisting of n nodes numbered from 0 to n - 1 and exactly n - 1 edges. The root ...
分类:
其他好文 时间:
2020-07-20 10:50:59
阅读次数:
70
变量 var存在的问题 可以重复声明 无法限制修改 没有块级作用域 (在全局范围内有效) 存在变量提升 const/let 不可以重复声明 let a = 1; let a = 2; var b = 3; var b = 4; a // Identifier 'a' has already been ...
分类:
其他好文 时间:
2020-07-18 13:48:57
阅读次数:
75
使用git 出现 Your account has been blocked 无法将本地仓库代码push到远程仓库 GitLab: Your account has been blocked. fatal: Could not read from remote repository. 解决方案如下: ...
分类:
其他好文 时间:
2020-07-18 11:22:31
阅读次数:
313
The TV shows such as You Are the One has been very popular. In order to meet the need of boys who are still single, TJUT hold the show itself. The sho ...
分类:
其他好文 时间:
2020-07-18 00:42:55
阅读次数:
89
1、安装wampserver 2、在wampserver3下快速配置多站点多目录 https://www.cnblogs.com/WalAmar/p/6136110.html 3、复制目录下的.env.example 重命名为.env 配置好数据库: DB_CONNECTION=mysql DB_H ...
分类:
其他好文 时间:
2020-07-17 19:35:52
阅读次数:
76
命名py脚本时,不要与python预留字,模块名等相同,即Python文件名不要使用Python系统库的名字,就是因为使用了Python系统库的名字,所以在编译的时候才会产生.pyc文件。正常的Python文件在编译运行的时候是不会产生.pyc文件的! 这类问题的解决方法则是:更改python脚本的 ...
分类:
其他好文 时间:
2020-07-17 19:27:07
阅读次数:
76
在CentOS 7下,手工设置 /etc/resolv.conf 里的DNS,过了一会,发现被系统重新覆盖或者清除了。和CentOS 6下的设置DNS方法不同,有几种方式: 1、使用全新的命令行工具 nmcli 来设置 #显示当前网络连接 #nmcli connection show NAME UU ...
分类:
其他好文 时间:
2020-07-17 13:46:13
阅读次数:
100
public <E> List<E> selectList(Mapper mapper, Connection conn){ PreparedStatement pstm = null; ResultSet rs = null; try{ String queryString = mapper.ge ...
分类:
数据库 时间:
2020-07-17 11:34:51
阅读次数:
97