上一页 1 2 3 4 5 6 7 8 9 ··· 26 下一页
摘要: [root@localhost /]# df -lh 文件系统 容量 已用 可用 已用% 挂载点 /dev/mapper/centos-root 50G 50G 7M 100% / devtmpfs 7.8G 0 7.8G 0% /dev tmpfs 7.8G 0 7.8G 0% /dev/shm 阅读全文
posted @ 2021-09-18 21:22 zhanglw 阅读(1614) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/panrui1994/p/9378696.html 常用方法: let obj = { 'name' : 'zhangsan', 'age' : '18', 'language' : [1,[2,3],[4,5]], }; //深拷贝 // 会漏掉方法 阅读全文
posted @ 2021-09-18 13:59 zhanglw 阅读(258) 评论(0) 推荐(0) 编辑
摘要: java 提供了 java -jar 命令 java -jar xx.jar 但这样直接运行,不能关掉 客户端,需要使用 linux 提供的 nohup 命令 nohup 英文全称 no hang up(不挂起),用于在系统后台不挂断地运行命令,退出终端不会影响程序的运行。 nohup 命令,在默认 阅读全文
posted @ 2021-09-17 15:14 zhanglw 阅读(1498) 评论(0) 推荐(0) 编辑
摘要: tomcat 对应日志的配置文件:tomcat目录下的/conf/logging.properties。 tomcat 的日志等级有:日志输出级别:SEVERE (最高级别) > WARNING > INFO > CONFIG > FINE > FINER(精心) > FINEST (所有内容,最低 阅读全文
posted @ 2021-09-17 14:29 zhanglw 阅读(536) 评论(0) 推荐(0) 编辑
摘要: ###1. 场景: win10下安装node之后,node -v,npm -v都正常,node安装成功,但是运行npm i或者全局安装某插件时,报错: npm ERR! { Error: EPERM: operation not permitted, mkdir 'C:\Program Files\ 阅读全文
posted @ 2021-09-15 21:46 zhanglw 阅读(1893) 评论(0) 推荐(0) 编辑
摘要: 问题描述:echarts 实例赋值给 reactive 响应式 Proxy对象,导致tooltip不显示 //template <div style="width: 600px; height: 600px;border: 1px solid red" ref="chartContainer"> s 阅读全文
posted @ 2021-09-15 15:31 zhanglw 阅读(3550) 评论(0) 推荐(2) 编辑
摘要: <template> <div> {{test.a}} {{test.b}} {{test.c}} {{test.d}} </div> </template> <script lang="ts"> import { defineComponent, PropType, ref, reactive, 阅读全文
posted @ 2021-09-13 21:28 zhanglw 阅读(180) 评论(0) 推荐(0) 编辑
摘要: ##1、 日期转换 Date 转 String /** * 日期格式化 Date -> String * @param {string} fmt yyyy-MM-dd HH:mm:ss * @param {Date} date * @returns {string} */ export functi 阅读全文
posted @ 2021-08-27 18:27 zhanglw 阅读(218) 评论(1) 推荐(0) 编辑
摘要: /** * 根据某一天日期 获取 当前周的第一天和最后一天的日期(周一和周日) * @param date {Date} * @return {{endDate: Date, startDate: Date}} */ export function getStartAndEndDateOfWeek( 阅读全文
posted @ 2021-08-27 18:01 zhanglw 阅读(780) 评论(0) 推荐(0) 编辑
摘要: 安装配置 https://www.runoob.com/nodejs/nodejs-install-setup.html https://nodejs.org/zh-cn/download/ 升级 node有一个模块叫 n ,是专门用来管理node.js的版本的。 注意,Windows系统不支持 n 阅读全文
posted @ 2021-08-27 13:40 zhanglw 阅读(47) 评论(1) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 26 下一页