异步的概念 ajax 编程 异步实现的几种方式 回调函数 promise 生成器 async await 异步编程的概念 有异步编程,就有同步编程 console.log("Hello"); console.log("World"); for(let i=0;i<5;i++){ console.lo ...
分类:
Web程序 时间:
2020-12-31 12:10:41
阅读次数:
0
Markdown学习 使用typora来学习Markdown语法 标题 三级标题 四级标题 字体 Hello,World! Hello,World! Hello,World! Hello,World! Hello,World! 引用 这是一段引用的文字,做法:>加空格 分割线 图片 :使用require指令来载入相关的Node.js模块 创建服务器:用来监听客户端的 ...
分类:
Web程序 时间:
2020-12-30 11:12:56
阅读次数:
0
将牛和牛圈按照升序排序。设z[i]表示第i个牛圈可以和前z[i]头牛匹配。 从前往后扫描牛圈。dp[i][j][k]表示扫描到第i个牛圈,在前z[i]个牛中,还有j被钦定匹配和i+1~n的牛圈匹配。k表示是否有一个牛被钦定不被比配。 dp[i][j][k]可以扩展到dp[i+1][j+l][k'] ...
分类:
其他好文 时间:
2020-12-30 11:00:01
阅读次数:
0
树莓派3B+ 开启超频 sudo vim /boot/config.txt // 将你要修改的值添加到该文件尾部 # CPU超频 arm_freq = 1375 over_voltage = 6 core_freq = 550 # GPU超频 gpu_freq = 550 # 内存 sdram_fr ...
分类:
其他好文 时间:
2020-12-30 10:35:24
阅读次数:
0
PUT test/_doc/1 { "content":"Hello World" } GET test/_analyze { "explain": true, "analyzer": "standard", "text": "Hello World" } POST test/_search { " ...
分类:
其他好文 时间:
2020-12-29 11:59:23
阅读次数:
0
<template> <section> <h1>hello world~</h1> </section> </template> <script> export default { data() { return { timer: '', value: 0 }; }, methods: { get ...
分类:
其他好文 时间:
2020-12-29 11:36:07
阅读次数:
0
curl is a a command line tool that allows to transfer data across the network. It supports lots of protocols out of the box, including HTTP, HTTPS, FT ...
分类:
Web程序 时间:
2020-12-29 11:24:49
阅读次数:
0
一段代码:<div id="elem">hello <b>world</b></div> 使用场景:作用于(读取或者替换)一段HTML代码。 div.outerHTML='<p>a new element</p>'; div.innerHTML='<p>a new element</p>'; inn ...
分类:
Web程序 时间:
2020-12-28 11:46:19
阅读次数:
0