上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 31 下一页
摘要: Syntax Error: Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (93) 说明node sass版本在当前环境运行不了 解决方案 阅读全文
posted @ 2022-02-13 16:02 清和时光 阅读(4216) 评论(0) 推荐(0) 编辑
摘要: 根据vue cli官网安装了vue之后系统仍显示找不到vue命令 ##解决方法 ###1. 配置环境变量路径 获取下载的包路径信息 npm config get prefix 将路径设置到系统环境变量 在"控制面板"里面找到“系统和安全”,接着在“系统和安全”找到“系统”,找到系统界面后,在左边的侧 阅读全文
posted @ 2022-02-13 15:29 清和时光 阅读(2936) 评论(0) 推荐(0) 编辑
摘要: 在使用TS 编写VUE代码,使用any类型报警告如下 解决方案: 在.eslintrc.js文件的rules添加关闭any类型警告配置 module.exports = { rules: { '@typescript-eslint/no-explicit-any':'off'//关闭any类型警告 阅读全文
posted @ 2022-02-13 09:44 清和时光 阅读(2733) 评论(0) 推荐(1) 编辑
摘要: ###为什么要配置环境变量 每个项目在开发和上线生产或者测试阶段的服务器地址等有可能是不一样的,所以需要根据环境给这些变量不一样的值。 ###方式一:添加一个配置文件 config.ts 根据process.env.NODE_ENV区分不同环境 开发环境: development 生成环境: pro 阅读全文
posted @ 2022-02-13 09:05 清和时光 阅读(3011) 评论(0) 推荐(0) 编辑
摘要: 1、Chinese(Simplified) Language Pack for Visual Stidio Code 中文汉化包 对于一些英文不太好的小伙伴,上来第一件事肯定是要切换成中文语言环境,安装汉化包插件之后,按快捷键Ctrl+Shift+P调出命令面板,输入Configure Displa 阅读全文
posted @ 2022-02-12 14:29 清和时光 阅读(345) 评论(0) 推荐(0) 编辑
摘要: ###在win10 下安装yarn后,在编辑器中检查yarn的安装的时候会出现: 解决方法 1:搜索powershell,以管理员方式运行powershell 2:使用命令更改计算机的执行策略 执行: set-ExecutionPolicy RemoteSigned 阅读全文
posted @ 2022-02-10 09:50 清和时光 阅读(2614) 评论(0) 推荐(1) 编辑
摘要: ##安装element-plus // NPM npm install element-plus --save // Yarn yarn add element-plus // pnpm pnpm install element-plus ##方式一、全局引入element-plus 在main.t 阅读全文
posted @ 2022-01-27 17:18 清和时光 阅读(2080) 评论(0) 推荐(0) 编辑
摘要: ###报错信息: Microsoft.EntityFrameworkCore.DbUpdateException: An error occurred while updating the entries. See the inner exception for details. > Microso 阅读全文
posted @ 2022-01-25 12:28 清和时光 阅读(2022) 评论(0) 推荐(0) 编辑
摘要: select v.Branch, v.Store, v.ChildId,SUM(r.Cash) from OrderDetail as r inner join Order as v on r.OrderId equals v.Id where r.OrderId == 123 group by v 阅读全文
posted @ 2022-01-18 17:40 清和时光 阅读(56) 评论(0) 推荐(0) 编辑
摘要: ###报错信息: Cannot insert explicit value for identity column in table 'Order' when IDENTITY_INSERT is set to OFF. ###分析: 报错解析:不能往Order表的自增字段插入值 通常情况下,不能向 阅读全文
posted @ 2022-01-18 11:52 清和时光 阅读(804) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 31 下一页