上一页 1 ··· 59 60 61 62 63 64 65 66 67 ··· 133 下一页
摘要: ##常用的Dos命令 dir 相对于之前的ls命令 1.#盘符切换 例如D: 2.#查看当前目录下的所有文件 dir 3.#切换目录 cd change directory E:(cd /d ) 4.cd..(上一级) 5.#清理目录 cls(clear screen) 6.#退出终端 exit 7 阅读全文
posted @ 2022-06-23 14:13 盘思动 阅读(67) 评论(0) 推荐(0)
摘要: 参考:https://www.likecs.com/show-204016450.html 阅读全文
posted @ 2022-06-22 18:04 盘思动 阅读(3379) 评论(0) 推荐(0)
摘要: *cmd输入:sqlite3 -version 阅读全文
posted @ 2022-06-22 14:05 盘思动 阅读(964) 评论(0) 推荐(0)
摘要: 类型navicate,可以直接打开数据库可视化表界面 使用软件“SQLiteSpy”查看。 软件下载地址: https://pan.baidu.com/s/1yoEB_MTlh0kfHj54XjZFUg 提取码: 3v32 运行软件SQLiteSpy.exe,再把需要查看的sqlite3文件拖到窗口 阅读全文
posted @ 2022-06-22 09:37 盘思动 阅读(591) 评论(0) 推荐(0)
摘要: console.log(__dirname);// 当前文件所在的路径; const sqlite3 = require('sqlite3'); // 引入 sqlite3 模块 const path = require('path'); // 引入路径处理模块 const dbName = pat 阅读全文
posted @ 2022-06-22 08:39 盘思动 阅读(1930) 评论(0) 推荐(0)
摘要: console.log(new Date()); function getdata(){ var p = new Promise((resolve,reject) => { const mysql = require('mysql') // 数据库配置对象 from const databaseCo 阅读全文
posted @ 2022-06-21 16:08 盘思动 阅读(119) 评论(0) 推荐(0)
摘要: Promise提供了一种异步执行模式。 注意一点Promise的执行仍然是异步方式的,并没有改变成同步执行模式,只不过让代码写起来读起来像是同步执行一样。 在node.js中,回调函数的多重嵌套可能会导致代码难以维护。因此,我们借助Promise来封装异步函数, 使用统一的链式API来避免函数不断的 阅读全文
posted @ 2022-06-21 14:14 盘思动 阅读(465) 评论(0) 推荐(1)
摘要: 1.ip互通检测,ping检测 2.更改config/index.js 配置文件 当你成功执行上一步,确定你们处于同一局域网下后:在你的项目中找到config文件夹,找到index.js文件, 你可以看到host:localhost(默认),将localhost改成本机ip地址 (放vue项目的那台 阅读全文
posted @ 2022-06-20 16:48 盘思动 阅读(238) 评论(0) 推荐(0)
摘要: ![](https://img2022.cnblogs.com/blog/1202393/202206/1202393-20220620164011332-1099028909.png) 阅读全文
posted @ 2022-06-20 16:41 盘思动 阅读(36) 评论(0) 推荐(0)
摘要: <template> <div class="login-wrap"> <animate-number from="0" :to="today" duration="200" easing="easeOutQuad" from-color="#44CC00" to-color="#ec4949" s 阅读全文
posted @ 2022-06-20 11:17 盘思动 阅读(948) 评论(0) 推荐(0)
上一页 1 ··· 59 60 61 62 63 64 65 66 67 ··· 133 下一页