上一页 1 ··· 17 18 19 20 21
摘要: 来自: https://blog.csdn.net/czjlghndcy/article/details/84398207 1.安装HomeBrew(https://brew.sh/) 2.安装nginx brew install nginx 3.启动nginx brew services star 阅读全文
posted @ 2019-01-15 19:57 Lyra李 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 1. 安装淘宝镜像 为了提高npm的安装速度,可以使用淘宝镜像。 使用淘宝镜像的方法有两种: 1. npm install -g cnpm --registry=https://registry.npm.taobao.org 2. 替换npm的源,npm config set registry ht 阅读全文
posted @ 2018-12-29 14:38 Lyra李 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 删除空文件夹 rmdir xx 创建文件夹 mkdir xx 删除文件 rm xx 创建文件 vim xx 强制删除文件夹及其子文件 rm -rf xxx 解压缩文件 unzip xxx 解压缩linux下的nodejs安装包 tar -xvf node-v8.0.0-linux-x64.tar.x 阅读全文
posted @ 2018-12-29 09:32 Lyra李 阅读(178) 评论(0) 推荐(0) 编辑
摘要: Promise基础概念 阅读全文
posted @ 2018-12-09 15:19 Lyra李 阅读(1295) 评论(0) 推荐(0) 编辑
摘要: 1.使用Math.floor() 2.使用位运算符 | 注意:这种取整方法不适用超过32位整数最大值2147483647的数 所有位运算符只能用于整数(下面的~也适用),如果是非整数,会先将其转为整数; 虽然js内部是按照64为浮点数存储,但是位运算的时候是以32位带符号整数进行的. 3. 使用位运 阅读全文
posted @ 2018-12-05 08:55 Lyra李 阅读(1661) 评论(0) 推荐(0) 编辑
摘要: 1.向下取整 数学符号: ⌊59/60⌋=0 向下取整 等于js中的Math.floor() ⌈59/60⌉=1 向上取整 等于js中的Math.ceil() 2. 等差数列 an = a1+(n-1)*d; // d是公差 sum = (a1+an)*n/2 = n*a1 + n(n-1)*d/2 阅读全文
posted @ 2018-12-02 19:58 Lyra李 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 该方法中判断当前字母是大写字母还是小写字母的方法是: a a.toUpperCase() 或者 a a.toLowerCase() 上面的方法中判断大小写的方法是: 在搜查出的大小写字母中,char >= 'a' 是小写字母;反之值大写字母。 注意: 1)toUpperCase(),toLowerC 阅读全文
posted @ 2018-11-30 19:27 Lyra李 阅读(436) 评论(0) 推荐(0) 编辑
摘要: 1.不同点 1.数据类型不同 typeof null 'object' typeof undefined 'undefined' 2.转为数值时值不同 Number(null) -->0 Number(undefined) -->NaN 3.用法和含义不同 null表示"空值" undefined表 阅读全文
posted @ 2018-11-27 21:33 Lyra李 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 一、API 1.ContentSync.sync(options) options.src : 字符串类型 (必选项)远程托管内容的URL。更新一个生产环境下的APP,常使用HTTPS options.id: 字符串类型 (必选项)查找缓存内容的唯一标志符 options.type: 字符串类型 ( 阅读全文
posted @ 2017-04-10 13:07 Lyra李 阅读(134) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21