class EventBus { constructor(){} handlerBus={} //注册 $on(eventName,handler){ if(!this.handlerBus.hasOwnProperty(eventName)){ this.handlerBus[eventName] ...
分类:
Web程序 时间:
2021-01-22 12:01:16
阅读次数:
0
1:pom中设置下载源为阿里云 <repositories> <repository> <id>aliyun</id> <name>aliyun</name> <url>https://maven.aliyun.com/repository/public</url> </repository> </ ...
分类:
编程语言 时间:
2021-01-22 12:00:04
阅读次数:
0
python ORM关联表 定义两张表 # 国家表 class Country(models.Model): name = models.CharField(max_length=100) # 学生表, country 字段是国家表的外键,形成一对多的关系 class Student(models. ...
分类:
编程语言 时间:
2021-01-22 11:48:56
阅读次数:
0
转自https://blog.csdn.net/weixin_34102807/article/details/85965725 ##1、新建ConfigMap apiVersion: v1 kind: ConfigMap metadata: name: test-conf namespace: d ...
分类:
其他好文 时间:
2021-01-22 11:43:56
阅读次数:
0
listen 80; server_name localhost; # 访问"localhost"的全部请求会被转发到"localhost:81" # localhost => localhost:81 # localhost/a/ => localhost:81/a/ # localhost/b/ ...
分类:
其他好文 时间:
2021-01-21 10:52:23
阅读次数:
0
一、使用docker安装sonatype/nexus3私有maven仓库简介 安装命令根据实际部署情况调整 版本地址:官方镜像主页 | 发布版Tags 最新版本命令: docker pull sonatype/nexus3:latest 指定版本命令: docker pull sonatype/ne ...
分类:
其他好文 时间:
2021-01-21 10:51:38
阅读次数:
0
from threading import * from time import * def show_info(name,age): print(name,age) def show_user_info(username,password): print(username,password) if ...
分类:
编程语言 时间:
2021-01-21 10:50:33
阅读次数:
0
一、类和对象 类即类别、种类,是面向对象设计最重要的概念,对象是特征与技能的结合体,而类则是一系列对象相似的特征与技能的结合体。 在现实世界中:先有对象,再有类; 在程序中:务必保证先定义类,后产生对象; class Student: school='oldboy' def __init__(sel ...
分类:
其他好文 时间:
2021-01-21 10:47:33
阅读次数:
0
声明 转自:https://www.cnblogs.com/shangzekai/p/5822907.html 以下为正文 chmod是Linux下设置文件权限的命令,后面的数字表示不同用户或用户组的权限。 一般是三个数字: 第一个数字表示文件所有者的权限 第二个数字表示与文件所有者同属一个用户组的 ...
分类:
其他好文 时间:
2021-01-21 10:44:55
阅读次数:
0
Influx cli cheetsheet -- 管理用户 CREATE USER "hsj" WITH PASSWORD 'hsj' CREATE USER "zx" WITH PASSWORD 'zx' 创建admin账号 CREATE USER "todd" WITH PASSWORD '12 ...
分类:
其他好文 时间:
2021-01-21 10:44:35
阅读次数:
0