<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< ...
分类:
移动开发 时间:
2021-01-02 10:37:44
阅读次数:
0
// 事件(Event)机制 const EventEmitter = require('events'); const emitter = new EventEmitter(); // 侦听一个事件 emitter.on("a", (event) => { console.log(event + ...
分类:
其他好文 时间:
2021-01-01 12:51:35
阅读次数:
0
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>index</title> <style> *{ font-family: 微软雅黑; } </style> </head> <body> <p><a href ...
分类:
其他好文 时间:
2021-01-01 12:15:13
阅读次数:
0
下载 url 为 https://www.mongodb.com/try/download/community 选择 MongoDB Enterprise Server centos 版本 tgz wget https://fastdl.mongodb.org/linux/mongodb-linux ...
分类:
数据库 时间:
2021-01-01 12:00:13
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script src="htt ...
分类:
其他好文 时间:
2021-01-01 11:57:44
阅读次数:
0
Linux中修改环境变量及生效方法如下: 方法一: 在/etc/profile文件中添加变量【对所有用户生效(永久的)】 用vim在文件/etc/profile文件中增加变量,该变量将会对Linux下所有用户有效,并且是“永久的”。 要让刚才的修改马上生效,需要执行以下代码 # source /et ...
分类:
系统相关 时间:
2020-12-31 12:36:43
阅读次数:
0
JDK1.8的安装与卸载步骤 安装JDK流程 1.找到jdk的路径,mv到新建的文件夹内部.(jdk的安装路径) tar zxvf 命令 2.配置环境变量 vim /etc/profile编辑该文件,该文件是系统的全局文件.在里面添加环境变量 3.重启liunx系统 profile文件即可生效,或者 ...
分类:
其他好文 时间:
2020-12-31 12:33:52
阅读次数:
0
显示某个区域步骤: (1)加载该区域的矢量地图数据 (2)通过registerMap注册到echarts全局对象中 (3)指明geo配置下的type和map属性 (4)通过zoom放大该区域 (5)通过center定位中心点 <script src="lib/echarts.min.js"></sc ...
分类:
其他好文 时间:
2020-12-31 12:08:14
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Docum ...
分类:
其他好文 时间:
2020-12-31 11:49:47
阅读次数:
0
错误提示: Add-Migration : The term 'Add-Migration' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelli ...
分类:
Web程序 时间:
2020-12-30 11:32:15
阅读次数:
0