// watch 简单应用 watch(data, () => { document.title = 'updated ' + data.count }) // watch 的两个参数,代表新的值和旧的值 watch(refData.count, (newValue, oldValue) => { ...
分类:
其他好文 时间:
2021-04-28 12:15:10
阅读次数:
0
git log 显示从最近到最远的所有提交日志 git reflog 显示每次提交的 commit 的 comit id git reset --hard HEAD^ // 回退到 最后一次提交的版本 git reset --hard 版本id // 回退到 当前id 提交的版本 -> id 可以通 ...
分类:
其他好文 时间:
2021-04-28 12:05:46
阅读次数:
0
library(ggplot2) set.seed(1) vals1 ← rbeta(1000, 0.5, 0.1) vals2 ← rbeta(1000, 0.25, 0.3) gg ← ggplot(data.frame(x=c(vals1, vals2), grp=c(rep("a", 100 ...
分类:
其他好文 时间:
2021-04-28 11:54:18
阅读次数:
0
绑定事件 在input标签内使用bindinput关键字,可以绑定input事件 例如: index.wxml中 `<input type="text" bindinput="handInputOne">` index.js中 `handInputOne(a){ console.log(a) //若 ...
分类:
微信 时间:
2021-04-28 11:50:08
阅读次数:
0
//多个输入框的情况 if (Number(value) <= Number(se.fullCredit)) { value = value.replace(/[^\d.]/g, '') //清除“数字”和“.”以外的字符 value = value.replace(/^\./g, '') //验证 ...
分类:
其他好文 时间:
2021-04-28 11:44:32
阅读次数:
0
1. find . -regex '.*\.c\|.*\.cc' | xargs grep "string" --color --line-number 2. sed -n '5,10p' filename 查看文件的第5行到第10行。 3. grep -o hello test.log | wc ...
分类:
其他好文 时间:
2021-04-27 15:16:42
阅读次数:
0
Egret引擎本身没有任何内存管理策略 这篇文章 非常给力 https://blog.csdn.net/linguifa/article/details/109861434https://blog.csdn.net/shirln/article/details/98210001 https://bl ...
分类:
其他好文 时间:
2021-04-27 15:09:31
阅读次数:
0
syslog=1 maxlog=1 log_warning=1 log_notice=1 log_info=1 log_augmentation=1 logdir=/var/log/ ...
分类:
数据库 时间:
2021-04-27 15:05:07
阅读次数:
0
原文:https://www.cnblogs.com/powerwu/articles/12978664.html 偶然看到一条命令可以获取访问者的真实 IP,就想自己实现一下。 命令如下: curl icanhazip.com 我是用的 Java 程序 + Nginx 实现的,没什么难度,但是 N ...
分类:
编程语言 时间:
2021-04-27 14:56:07
阅读次数:
0
已经有数据库,做主从复制 服务器 备注 数据库 192.168.137.6 Master 有2个数据库,不同步mysql数据库 192.168.137.3 Slave 没有数据库 Master操作 [mysqld] #############better########### log-bin = / ...
分类:
数据库 时间:
2021-04-27 14:50:54
阅读次数:
0