摘要: 懒是技术进步的一大原因。这不,为了实现领导快速方便的检查我们正在开发的应用,就研究了一下如何把web应用打包成exe可执行文件,并且自动打开浏览器,这样,领导只需要轻轻地点击一下,就可以看到酷炫的页面了。 环境: 前端:Angular 后端:Nodejs + Koa 打包工具:pkg库 打开浏览器库 阅读全文
posted @ 2020-12-07 20:05 JasonWangTing 阅读(1029) 评论(0) 推荐(0) 编辑
摘要: const input = document.createElement('input') as HTMLInputElement; input.type = 'file'; input.accept = 'application/json'; input.addEventListener('cha 阅读全文
posted @ 2020-12-07 19:31 JasonWangTing 阅读(1022) 评论(0) 推荐(0) 编辑
摘要: const a = document.createElement('a'); a.href = `data:text/txt;charset=utf-8, '文件内容'}`; a.download = 'log.txt' // 文件名称; a.click(); 阅读全文
posted @ 2020-12-07 19:30 JasonWangTing 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 使用Chrome打开网址 var open = require("open"); open("http://www.google.com", "chrome"); 调用Start打开 open模块的实现原理非常简单,即start命令,我们可以直接在命令行中调试: C:\Users\c2u> star 阅读全文
posted @ 2020-12-07 19:13 JasonWangTing 阅读(935) 评论(0) 推荐(0) 编辑