上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 86 下一页
摘要: 创建一个模板 npm init @vitejs/app my-vue-app -- --template vue yarn create @vitejs/app my-vue-app --template vue 目录结构 vscode 安装插件 volar 的vue3插件 安装yarn npm i 阅读全文
posted @ 2021-05-14 11:12 富坚老贼 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-05-11 14:35 富坚老贼 阅读(37) 评论(0) 推荐(0) 编辑
摘要: try { //拋異常 throw new Error('错误信息') } catch (e) { console.log(e) } console.log('abc') 阅读全文
posted @ 2021-05-11 13:29 富坚老贼 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-05-11 12:29 富坚老贼 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 文件路径 dirname: 获取文件的父文件夹。 basename: 获取文件名部分。 extname: 获取文件的扩展名。 const path=require('path') p='D:/testpro/nodejs/test/s.txt' console.log(path.basename(p 阅读全文
posted @ 2021-05-11 11:38 富坚老贼 阅读(93) 评论(0) 推荐(0) 编辑
摘要: let h=require('http') //创建服务器实例 let server=h.createServer() server.listen(8080,()=>{ console.log('hi') }) // server.on('request',(req,res)=>{ //req中包含 阅读全文
posted @ 2021-05-11 09:20 富坚老贼 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 自定义模块 a.js //导入 let test=require('./b.js') console.log(test.s) console.log(test.add1(3,2)) b.js let s=10 let add1=function add1(i,j){ return i+j } let 阅读全文
posted @ 2021-05-10 11:18 富坚老贼 阅读(32) 评论(0) 推荐(0) 编辑
摘要: tsc -w 监视 { //指定哪些文件需要被编译 // * 表示任意文件 **表示任意目录 "include": [ "./ts/*" ], //不包含 //"exclude": [], //设置编译指定文件 //"files": [], //编译器设置 //"编译选项" www.tslang.c 阅读全文
posted @ 2021-05-08 22:24 富坚老贼 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 47个过程(PMBOK2008) - 王景 - 博客园 (cnblogs.com) 项目管理过程 知识领域 过程组 含义 之前应完成 之后要进行 制定项目章程 整合 启动 编写一份正式批准项目并授权项目经理使用组织资源的文件的过程 无 制定项目管理计划 制定项目管理计划 整合 规划 定义、准备和协调 阅读全文
posted @ 2021-05-05 09:57 富坚老贼 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 历年 风险 整体 范围 进度 成本 质量 人力资源 沟通 干系人 采购 阅读全文
posted @ 2021-05-02 15:04 富坚老贼 阅读(37) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 86 下一页