上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 27 下一页
摘要: <html> <head> <title>监听器 watch</title> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="root"> <h3>Watch 用 阅读全文
posted @ 2021-01-14 22:22 小白咚 阅读(179) 评论(0) 推荐(0) 编辑
摘要: <html> <head> <title>过滤器 filter</title> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="root"> <!-- |在vue 阅读全文
posted @ 2021-01-14 21:54 小白咚 阅读(104) 评论(0) 推荐(0) 编辑
摘要: Array.unshift(Array.splice(index,1)[0]); 阅读全文
posted @ 2021-01-13 11:59 小白咚 阅读(199) 评论(0) 推荐(0) 编辑
摘要: js中数组操作方法整理 https://www.jianshu.com/p/22a4c0b514fa 常见方法,一看就会用的,就不代码去实现操作了,复杂的就demo一下。 1. join() 功能:将数组中所有元素都转化为字符串并连接在一起。 2. reverse() 功能:将数组中的元素颠倒顺序。 阅读全文
posted @ 2021-01-13 11:44 小白咚 阅读(392) 评论(1) 推荐(0) 编辑
摘要: 《nodej技术栈》 https://www.nodejs.red/#/ts/basis node专业中文社区 https://cnodejs.org/ Nodejs Web开发 https://hub.fastgit.org/Web-Dev-Tutor/nodejs 一杯茶的时间,上手 Expre 阅读全文
posted @ 2021-01-05 16:50 小白咚 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 解决办法:升级node,然后重新下载puppeteer插件 设置淘宝镜像下载 npm config set puppeteer_download_host=https://npm.taobao.org/mirrors npm install puppeteer 问题:报错 (node:828) Un 阅读全文
posted @ 2021-01-04 21:52 小白咚 阅读(3406) 评论(1) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
posted @ 2021-01-04 11:26 小白咚 阅读(409) 评论(0) 推荐(0) 编辑
摘要: .selectStyle { color: #EF420E; font-size: 35rpx; font-weight: bold; position: relative; } .selectStyle::before { content: ''; position: absolute; left 阅读全文
posted @ 2020-12-31 10:42 小白咚 阅读(844) 评论(0) 推荐(0) 编辑
摘要: HTTP 状态码 分成五类 1xx Informational, 表示信息提示相关的 2xx Successful, 表示成功的 3xx Redirection,重定向 4xx Client Error,客户端错误 5xx Server Error,服务器错误 1xx Informational, 阅读全文
posted @ 2020-12-30 15:20 小白咚 阅读(77) 评论(0) 推荐(0) 编辑
摘要: /* 什么是 Buffer? Buffer 就是 Node.js 处理二进制数据的容器 在 ES6 之前,JS 并没有处理二进制的机制, 在 ES6 之后,JS 使用了 TypedArray 里的 Uint8Array 作为 Buffer 的底层 Buffer 类似于整数的数组,但是长度受限(8bi 阅读全文
posted @ 2020-12-28 17:28 小白咚 阅读(752) 评论(0) 推荐(0) 编辑
摘要: // 事件(Event)机制 const EventEmitter = require('events'); const emitter = new EventEmitter(); // 侦听一个事件 emitter.on("a", (event) => { console.log(event + 阅读全文
posted @ 2020-12-28 16:28 小白咚 阅读(1252) 评论(0) 推荐(0) 编辑
摘要: 创建 UDP 服务器 const dgram = require('dgram'); const server = dgram.createSocket('udp4'); // 创建 message 事件的接收器 server.on('message', (msg, rinfo) => { cons 阅读全文
posted @ 2020-12-28 15:45 小白咚 阅读(192) 评论(0) 推荐(0) 编辑
摘要: for(var k of Object.keys(global)){console.log(k)} global clearInterval clearTimeout setInterval setTimeout queueMicrotask clearImmediate setImmediate 阅读全文
posted @ 2020-12-28 13:59 小白咚 阅读(120) 评论(0) 推荐(0) 编辑
摘要: { overflow: hidden; text-overflow: ellipsis; // 显示省略符号来代表被修剪的文本 white-space: nowrap; // 文本不会换行,文本会在在同一行上继续 display: block; // 此元素将显示为块级元素,此元素前后会带有换行符 阅读全文
posted @ 2020-12-28 10:09 小白咚 阅读(128) 评论(1) 推荐(0) 编辑
摘要: 如果Content-Type设置为“application/x-www-form-urlencoded;charset=UTF-8”无论是POST请求还是GET请求都是可以通过这种方式成功获取参数,但是如果前端POST请求中的body是Json对象的话,会报上述错误。 请求中传JSON时设置的Con 阅读全文
posted @ 2020-12-28 08:37 小白咚 阅读(9018) 评论(0) 推荐(1) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 27 下一页