12 2021 档案

摘要:html代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobil 阅读全文
posted @ 2021-12-28 10:22 待炒的鱼 阅读(2276) 评论(2) 推荐(1)
摘要:<head> <title></title> <meta name="keywords" content=""> <meta name="description" content=""> </head> let head = document.getElementsByTagName('head') 阅读全文
posted @ 2021-12-23 17:26 待炒的鱼 阅读(649) 评论(0) 推荐(0)
摘要:1.要实现浏览器录音功能,用的最广泛的插件是 js-audio-recorder 先附上插件文档: (1)http://recorder.api.zhuyuntao.cn/Recorder/start.html (2)https://www.e-learn.cn/topic/3748900 先排两个 阅读全文
posted @ 2021-12-17 14:01 待炒的鱼 阅读(1089) 评论(0) 推荐(0)
摘要:1.复制需要烧录的代码路径 2.在eclipse中右边空白处点击右键选择import 3.打开c/c++文件选择带有 Makefile 的文件,点击Next 4.取消c++勾选 选择 Cygwin GCC ,把复制的代码路径粘贴到第二行空白栏,点击Finish 5.导入成功 6.打开esp8266- 阅读全文
posted @ 2021-12-17 14:00 待炒的鱼 阅读(1045) 评论(0) 推荐(0)
摘要:安装uWSGI pip install uwsgi 在项目的目录创建一个uwsgi.ini的配置文件(manage.py) [uwsgi] # uwsgi 启动时所使用的地址与端口(可以与项目端口不一致) socket = 127.0.0.1:8088 # python 启动程序文件 wsgi-fi 阅读全文
posted @ 2021-12-17 13:56 待炒的鱼 阅读(339) 评论(0) 推荐(0)
摘要:1.安装swiper(默认安装最新版本) npm i swiper 2.安装vue-awesome-swiper(这里需要指定版本 有坑) npm install swiper vue-awesome-swiper@3.1.3 --save 3.页面使用 <template> <div class= 阅读全文
posted @ 2021-12-11 11:29 待炒的鱼 阅读(1474) 评论(0) 推荐(0)