上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 43 下一页
摘要: connection lost:The server closed the connection 其实很简单.mysql有个机制,就是8小时无通信,myslq就会自动关闭数据; 解决方案(2选1): 或者: 1.定时去做一个查询,就是 select * from XXX; 或者: 2.修改配置文件: 阅读全文
posted @ 2021-08-11 10:44 三瑞 阅读(108) 评论(0) 推荐(0) 编辑
摘要: electron vscode 调试时始终部分 js 进不了断点 原因:就是虽关闭了调试的程序(”调用堆栈“也是关闭),但下面的终端程序是没有关闭的,所以要关闭一下重新调试就oK了 阅读全文
posted @ 2021-08-08 11:08 三瑞 阅读(292) 评论(0) 推荐(0) 编辑
摘要: electron Uncaught TypeError: Cannot read property 'dialog' of undefined const remote = window.require('electron').remote; const dialog =remote.dialog; 阅读全文
posted @ 2021-08-07 15:02 三瑞 阅读(998) 评论(0) 推荐(0) 编辑
摘要: C# IndexOf 报错 值不能为null,参数名value 原因就是IndexOf 方法中传了null 就把这个错误! 值不能为 null。 参数名: s 赋值也会报上面的错.JsonText = "未能从程序集“”中加类型“”" 阅读全文
posted @ 2021-08-02 18:25 三瑞 阅读(582) 评论(0) 推荐(0) 编辑
摘要: 引用:https://www.jianshu.com/p/cc48d4520de3 使用:https://nklayman.github.io/vue-cli-plugin-electron-builder/guide/recipes.html#debugging-with-vscode 中的例子: 阅读全文
posted @ 2021-07-29 11:11 三瑞 阅读(526) 评论(0) 推荐(0) 编辑
摘要: 前言 vue-devtools是一款基于chrome游览器的插件,用于调试vue应用,这可以极大地提高我们的调试效率。接下来我们就介绍一下vue-devtools的安装。 chrome商店直接安装 vue-devtools可以从chrome商店直接下载安装,非常简单,这里就不过多介绍了。不过要注意的 阅读全文
posted @ 2021-07-25 15:43 三瑞 阅读(3969) 评论(0) 推荐(0) 编辑
摘要: __dirname is a NodeJS variable, in recent electron versions, node integration is disabled by default. When opening your BrowserWindow, you should add 阅读全文
posted @ 2021-07-25 13:17 三瑞 阅读(67) 评论(0) 推荐(0) 编辑
摘要: vscode中的如何自动将代码格式化成eslint风格 找到"文件" -> "首选项" -> "设置"(或者: File->Preferences->Settings ),点击右上角,切换到setting.json配置文件 追加以下代码: { // vscode默认启用了根据文件类型自动设置tabs 阅读全文
posted @ 2021-07-18 10:02 三瑞 阅读(730) 评论(0) 推荐(0) 编辑
摘要: 1、之前好好的项目,今天运行npm run serve。忽然报错运行不了了。 2、原因 在生成项目时候没有忽略 ESlint选项配置,其实建议创建项目的时候还是忽略掉这个选项比较好,因为后期写项目多空格少空格就会各种报错,改起来很麻烦,很多时候找不到。 3、忽略步骤如下 4、下面说下出现这种问题如何 阅读全文
posted @ 2021-07-17 21:48 三瑞 阅读(1271) 评论(0) 推荐(0) 编辑
摘要: Vue CLI3 和Vue CLI2 以及 及Vue2.x Vue3.x ,以及 Vue CLI2 升级到 Vue CLI3 一、 关于 Vue CLI3 和 和 Vue CLI2 以及 Vue2.x Vue3.xVue Cli 安装 vue 的脚手架工具,也就是官方命令行工具,可以用命令快速创建项 阅读全文
posted @ 2021-07-17 17:19 三瑞 阅读(155) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 43 下一页