摘要: 1.安装依赖包 1.express 2.art-template 3.express-art-template npm install express art-template express-art-template --save 2.新建一个app.js 文件,文件中内容如下 //导入expre 阅读全文
posted @ 2020-05-20 16:32 码佬 阅读(807) 评论(0) 推荐(0) 编辑
摘要: 1.安装依赖包 npm install --save xlsx file-saver 2.在vue组件中的script标签中输入 import FileSaver from 'file-saver' import XLSX from 'xlsx' 3.在methods里添加exportExcel方法 阅读全文
posted @ 2020-05-20 13:57 码佬 阅读(430) 评论(0) 推荐(0) 编辑
摘要: 写完项目的代码后,项目准备上线 ,可以使用 npm run build 命令 对项目打包。 但是经常出现打包好的项目是空白页的情况。这是因为需要我们手动配置。 解决方法如下 1. 在vue项目的根目录 下创建 一个 vue.config.js文件。 2.在文件中输入如下代码: module.expo 阅读全文
posted @ 2020-05-18 14:16 码佬 阅读(1157) 评论(0) 推荐(0) 编辑
摘要: 1.创建分支 git branch test 2.删除分支 git branch -d test 3.切换分支 git checkout master 4.创建一个文件:mkdir test.js 5.将文件上传到--暂存区 git add test.js 6.将文件上传至--本地仓库 git co 阅读全文
posted @ 2020-04-30 16:41 码佬 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-02-04 19:40 码佬 阅读(537) 评论(0) 推荐(0) 编辑
摘要: eg3. <form name="f1"> <input type="text" name="username"/> </form> 获取表单及表单项 var a=document.f1.username 阅读全文
posted @ 2020-02-04 19:28 码佬 阅读(117) 评论(0) 推荐(0) 编辑
摘要: <!doctype html public "-//w3c//dtd html 4.0 transitional//en"><html> <head> <title> new document </title> <meta name="generator" content="editplus"> < 阅读全文
posted @ 2020-02-04 16:10 码佬 阅读(4138) 评论(0) 推荐(0) 编辑
摘要: 每当毕业论文写到最后需要参考文献时,往往是很令人头疼的,因为有的老师对参考文献的要求是很多的,比如需要国内的和国外的,时间必须是近三年的,满足XXX要求的文献至少需要三篇以上等等。今天我就来给大家整理了各种技术各个出版时间年份的参考文献以供大家引用:(按文献出版时间倒序) 一、Java参考文献 [1 阅读全文
posted @ 2020-01-03 10:27 码佬 阅读(5377) 评论(0) 推荐(0) 编辑
摘要: 我的编程之路 <font color="red">从html开始</font> font 设置字体 color 颜色属性在Dos年代 文件名只有8位,扩展名只有3位 所以 网页的扩展名可以为.html 和 .htm常见扩展名 音频 MP3 wav 视频 MP4 avi rmap常用快捷键 复制粘贴当 阅读全文
posted @ 2019-12-31 10:51 码佬 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 时间(s)=1/时钟频率(单位换算成HZ) 例如:1GHz换算成秒 1)单位换算 把GHz换算成 Hz 2)1GHz=10^3MHz=10^6KHz=10^9Hz 1000的数量级 3)T(s)=1/(10^9Hz)=10^-9 s =1ns 补充 1s=10^3 ms=10^6 us=10^9 n 阅读全文
posted @ 2019-08-12 11:39 码佬 阅读(32110) 评论(0) 推荐(0) 编辑