※ 树莓派Zero W ,默认 hostname为 raspberrypi ,通过USB网络方式登陆时,修改hostname后,登录主机名要随之变化。 ① ssh pi@raspberrypi 更新系统: sudo apt update && sudo apt upgrade -y ② 安装apac ...
分类:
Web程序 时间:
2021-07-02 16:33:55
阅读次数:
0
var user = { name:"angdh", age:11, }; console.log( JSON.stringify(Object.getOwnPropertyDescriptors(user),null,2) ); { "name": { "value": "angdh", "wri ...
分类:
Web程序 时间:
2021-07-02 16:01:40
阅读次数:
0
#一.反射的定义 审查元数据并收集关于它的类型信息的能力。 #二.基础概念 (1)Assembly:定义和加载程序集,加载在程序集中的所有模块以及从此程序集中查找类型并创建该类型的实例。 (2)Module:获取包含模块的程序集以及模块中的类等,还可以获取在模块上定义的所有全局方法或其他特定的非全局 ...
created on 21/03/04 ##1、理解 全称:Immediately-Invoked Function Expression ##2、作用 隐藏实现 不会污染外部(全局)命名空间 用它编写js模块 (function(){ //匿名函数自调用 var a = 3; console.lo ...
分类:
其他好文 时间:
2021-07-01 17:25:48
阅读次数:
0
方法1:通过eval var a = 5; for (var i = 1; i <= a; i++) { eval("var a" + i + "=" + i); } alert(a1); 注意 必须是 var 声明 let 和 const 会报错 方法2: 连续声明 var a,b,c,d,e,f ...
分类:
Web程序 时间:
2021-07-01 17:24:23
阅读次数:
0
Dajngo查询数据,查询出来之后生成Excel保存本地 class ExportExcel(APIView): def post(self, request, *args, **kwargs): export_time = request.data.get('startEndTime') user ...
分类:
其他好文 时间:
2021-07-01 17:21:58
阅读次数:
0
Linux常用命令 1、系统命令 runlevel # 查看当前的运行级别 systemctl status firewalld # 开启网络服务功能 stop # 关闭 restart # 重启 reload # 重载 reboot # 重启 halt # 关机 poweroff # 关机 2、查 ...
分类:
系统相关 时间:
2021-07-01 16:41:50
阅读次数:
0
在 Office Open XML 默认单位是 dxa 也就是像素点的 20 倍,如 ISO 216 A4 (210x297mm ~ 8.3×11.7in) 的大小可以使用下面代码表示 在页面大小 Page width Page height 和边距 margin 和缩进 tabs 使用 <w:pg ...
分类:
其他好文 时间:
2021-07-01 16:39:01
阅读次数:
0
1、当前集群状态 [kingbase@ECOLABAPP37 bin]$ ./repmgr cluster show ID | Name | Role | Status | Upstream | Location | Priority | Timeline | Connection string + ...
分类:
其他好文 时间:
2021-07-01 16:27:49
阅读次数:
0
current status: We have a remote repository and a local project repository with no git configured. We want to push to remote and create new branch. Pr ...
分类:
其他好文 时间:
2021-07-01 16:24:13
阅读次数:
0