var Book = {} var name = ''; Object.defineProperty(Book, 'name', { set: function (value) { name = value; console.log('你取了一个书名叫做' + value); }, get: fun ...
分类:
其他好文 时间:
2021-04-14 11:55:37
阅读次数:
0
#!/usr/bin/env python3#!-*- coding:UTF-8 -*- import osclass GetPath():# 获取所有目录 @staticmethod def get_dir(path): print("打印所有目录:") for root, dirs, files ...
分类:
编程语言 时间:
2021-04-14 11:51:07
阅读次数:
0
一. RabbitMq简介 二. 安装步骤 参考: https://www.cnblogs.com/yaopengfei/p/13763500.html (需要补充一下) ! 作 者 : Yaopengfei(姚鹏飞) 博客地址 : http://www.cnblogs.com/yaopengfei ...
分类:
其他好文 时间:
2021-04-14 11:49:16
阅读次数:
0
一个具有迷惑性的例子,底下的两种情况可以看做两个循环,第一个只要满足一个条件就跳出循环,第二个是不管满足几个条件,都会往下走直至循环结束。 1 var a = 5; 2 if (a > 3) { 3 console.log("第一次执行"); //只有这一个会打印 4 } else if (a > ...
分类:
Web程序 时间:
2021-04-13 12:54:58
阅读次数:
0
查看所有配置,用户信息和文件位置 git config --list --show-origin 用户信息配置 git config --global user.name "user_name" git config --global user.email "user_email@qq.com" 本 ...
分类:
其他好文 时间:
2021-04-13 12:23:36
阅读次数:
0
package stream import ( "log" "reflect" "sort" ) type ( // a Stream is where one can drain data from Stream chan interface{} // buffer stream BufferSt ...
1、 https://blog.csdn.net/weixin_44014981/article/details/84888718 ...
分类:
数据库 时间:
2021-04-13 12:15:20
阅读次数:
0
成员变量的注入是在Bean创建成功之后,通过setter方法进行注入的。所以下面会获取不到值 @RestController public class VipsoftImController { @Autowired private ZooKeeperUtil zooKeeperUtil; @Req ...
分类:
其他好文 时间:
2021-04-13 12:07:49
阅读次数:
0
在wx上建立global的变量,然后request的时候,发送出去 关键代码,在请求体外 const app = getApp(); 在请求体内 historyId:app.globalData.zhanbuYao.data.historyId, 在方法体第一行的console.log 可以看到,取 ...
分类:
微信 时间:
2021-04-13 12:05:18
阅读次数:
0
部署altermanager组件 [root@zabbix ~]# tar -xf alertmanager-0.21.0.linux-amd64.tar.gz -C /opt/monitor/[root@zabbix ~]# cd /opt/monitor/[root@zabbix monitor ...
分类:
其他好文 时间:
2021-04-13 11:58:34
阅读次数:
0