上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 30 下一页
摘要: 小程序 vue实现直播间点赞飘心效果的示例代码 https://www.jb51.net/article/170438.htm canvas drawImage: https://www.cnblogs.com/ghostwu/p/7600654.html 阅读全文
posted @ 2020-03-01 12:57 James2019 阅读(240) 评论(0) 推荐(0) 编辑
摘要: let [x, [y, z]] = ['hello', ['JavaScript', 'ES6']]; x; // 'hello' y; // 'JavaScript' z; // 'ES6' let [, , z] = ['hello', 'JavaScript', 'ES6']; // 忽略前两 阅读全文
posted @ 2020-02-25 13:19 James2019 阅读(612) 评论(0) 推荐(0) 编辑
摘要: 数组对象: 数组也是对象,原型链: var arr = [] typeof arr // "object" arr > Array.prototype > Object.prototype > null 函数对象: 函数原型链 foo > Function.prototype > Object.pr 阅读全文
posted @ 2020-02-18 17:53 James2019 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 1. 创建签名 通常会遇到 No Java runtime present, requesting install. 用以下命令替换吧 成功会提示输入: 后面的请接着 这里 . 阅读全文
posted @ 2020-01-07 23:02 James2019 阅读(509) 评论(0) 推荐(0) 编辑
摘要: 官方只有这行命令: 这行在mac直接运行OK, windows运行十有八九找不到命令 解决: 运行一下,目的是找一个路径,如: 拼接成以下命令: 注意: 1. 有空格的一定要加引号, 2. 后面输出到一个存在的盘符里,如D:\ 3. 最好在CMD或powershell输入命令行,不要在git bas 阅读全文
posted @ 2020-01-07 16:37 James2019 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 文件压缩配置 https://www.cnblogs.com/jiangjunli/p/7374356.html . 阅读全文
posted @ 2020-01-07 15:39 James2019 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 本地回退: 回退后推送到远程: . 阅读全文
posted @ 2019-12-24 16:26 James2019 阅读(667) 评论(0) 推荐(0) 编辑
摘要: 查看系统版本: cat /etc/redhat-release(/etc/centos-release)// 或者 rpm -q centos-release [root@56 ~]# cat /etc/redhat-releaseCentOS Linux release 7.XXX (Core) 阅读全文
posted @ 2019-11-27 13:08 James2019 阅读(1446) 评论(0) 推荐(0) 编辑
摘要: Object.assign(this.$data, this.$options.data()) // 全部重置 Object.assign(this.$data.form, this.$options.data().form) // 部分重置 this.$data是当前状态的data数据this.$ 阅读全文
posted @ 2019-11-12 22:27 James2019 阅读(8963) 评论(0) 推荐(2) 编辑
摘要: 中文参考: https://github.com/demopark/sequelize-docs-Zh-CN https://segmentfault.com/a/1190000011583806 egg、sequelize联表查询 https://blog.csdn.net/qq_30101131 阅读全文
posted @ 2019-11-02 19:16 James2019 阅读(3319) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 30 下一页