报错信息:Expected '$(student - name)' to be an inline constant of type java.lang.String in @org.springframework.beans.factory.annotation.Value 这样使用会报错,原因是 ...
分类:
其他好文 时间:
2021-05-24 00:03:03
阅读次数:
0
error LNK2019: unresolved external symbol “” referenced in function 描述 Link错误、无法解析的外部符号 解决方法 检查.build.cs 中是否增加相关模块的引用,或者是否使用 XXX_API 宏 error C4668: “_ ...
分类:
编程语言 时间:
2021-05-04 15:39:05
阅读次数:
0
Rabbitmq 3.6.5以上版本修改端口号方法,网上查了下有一些方不管用,所以自己实践了引用官网说明 https://www.rabbitmq.com/configure.html#configuration-files 本文主要说明在Win系统下如何修改端口号5672为其它号首先查看Log 查 ...
分类:
其他好文 时间:
2021-05-03 12:27:44
阅读次数:
0
几种情况: 1.window可以 liunx乱码 检查文件写入文件夹时已经是乱码 解决方法:写入文件的时候转码 iconv('utf-8', 'gb2312','中文名称'); 2.window乱码 检查文件写入文件夹时已经是乱码 如果不是乱码 把代码传到服务器上面测试 是否正常能导出中文 如果还是 ...
分类:
其他好文 时间:
2021-05-03 11:47:58
阅读次数:
0
1.vuex vuex要解决的问题:多个视图结构依赖于同一个状态。来自不同视图的行为需要变更同一状态。其作用是多个组件共享数据或者是跨组件传递数据。 以前的解决方法:将数据即操作的行为都定义在父组件,并将其传递给需要的各个组件(有可能需要多组传递) 2.vuex的几种状态和属性 (1)state中保 ...
分类:
其他好文 时间:
2021-04-28 12:18:13
阅读次数:
0
pymysql连接数据库报错: 解决方法: 将db = pymysql.connect(“localhost”,“root”,“root”,“testdb” )修改为 db = pymysql.connect(host=“localhost”, user=“root”, password=“root ...
分类:
数据库 时间:
2021-04-28 12:07:51
阅读次数:
0
场景:前几天在项目开发时,有个bug经常出现,今天花了一整天,终于把它解决了。记录一下解决流程。 解决方法: 主要报错的地方在添加的部分: 1 foreach (var requestProperty in request.Properties) 2 { 3 UnitWork.Add(new Rel ...
分类:
其他好文 时间:
2021-04-28 11:47:37
阅读次数:
0
解决方法:将项目下的.eslintrc.js文件里的 由'plugin:vue/essential' 改为'plugin:vue/recommended'。如下图: ...
分类:
其他好文 时间:
2021-04-28 11:41:15
阅读次数:
0
学习无他法,唯有持之以恒 Git解决中文乱码问题git status 乱码解决方法:git config --global core.quotepath false?git commit 乱码解决方法:git config --global i18n.commitencoding utf-8?git ...
分类:
其他好文 时间:
2021-04-26 13:50:31
阅读次数:
0
参考: https://www.cnblogs.com/delav/p/11118555.html fatal: remote origin already exists.解决方法 https://blog.csdn.net/u014712086/article/details/107005216/ ...
分类:
其他好文 时间:
2021-04-26 13:43:48
阅读次数:
0