
解决问题
冰怜
真正的静,是生命里寂然涤思;真正的动,是世路上毅然向前
展开
-
mac 安装ucore,Error: Couldn‘t find an i386-elf version of GCC/binutils
原因:在搭建ucore操作系统,过程中brew install原创 2021-11-10 23:59:28 · 1043 阅读 · 0 评论 -
com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: 3 字节的 UTF-8 序列的字节 2 无效。
在pom加一句 <!-- 解决配置文件中的中文乱码 --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>原创 2019-12-08 12:14:40 · 154 阅读 · 0 评论 -
wangeditor源码出现。。。 Required String parameter 'msg' is not present %问题
提交内容<p><br><img src="http://39.100.91.233/images/121212.jpg" style="max-width:100%;">1212</p>最后发现是%问题解决问题this.editorContent = this.editorContent.replace("%","&a...原创 2019-09-28 16:03:30 · 745 阅读 · 0 评论 -
centos7 使用yum 报错Cannot find a valid baseurl for repo: base/7/x86_64
使用root账户vi /etc/resolv.conf设置DNS服务器 一个nameserver 114.114.114.114nameserver 114.114.114.115重启service network restart原创 2019-09-19 20:43:25 · 419 阅读 · 0 评论 -
MySQL `create_time` TIMESTAMP NULL DEFAULT CURRENT_TIME' at line 3
这个原因是因为数据库版本问题更换版本之后 就可以正常使用原创 2019-08-15 08:51:04 · 5378 阅读 · 0 评论 -
运行vue项目 npm ERR! missing script: dev npm ERR! A complete log of this run can be found in: npm ERR!
npm ERR! missing script: devnpm ERR! A complete log of this run can be found in:npm ERR! C:\Users\binglian\AppData\Roaming\npm-cache\_logs\2019-08-13T08_5530_155Z-debug.log由于版本更新 npm run d...原创 2019-08-13 16:57:31 · 50807 阅读 · 11 评论 -
IDEA 生成Serializable的序列版本serialVersionUID
Alt+enter原创 2019-08-13 16:52:39 · 715 阅读 · 0 评论 -
VUE+element 引入element报错 This dependency was not found: * element-ui/lib/theme-default/index.css in
错的原因是element-ui/lib/theme-default/index.css改成 element-ui/lib/theme-chalk/index.css原创 2019-08-06 09:03:55 · 3121 阅读 · 1 评论 -
为什么用箭头函数
我当时出错一直 赋值不了给数组 一直报错this 指向不对this指向的是ajax里面的 改成箭头函数就好了function(){}里面的this是局部的改成这样created:function(){ console.log("1"); this.$ajax.get("/category/list_category?...原创 2019-04-24 22:29:42 · 1300 阅读 · 0 评论 -
vue+已拦截跨源请求:同源策略禁止读取位于 http://192.168.43.168:8080/category/list 的远程资源。CORS 头缺少 'Access-Control-Allow
vue访问Java后台时候出现@CrossOrigin 加一个这个注解就可以 @RequestMapping("/list") @CrossOrigin public PagedResult<Category> getlist(@RequestParam(value = "pageNum",defaultValue = "1") int pageNum,...原创 2019-04-24 11:51:37 · 14987 阅读 · 0 评论 -
springboot 出现org.springframework.beans.factory.UnsatisfiedDependencyException
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'com.xuecheng.manager_cms.dao.CmsPageRepositoryTest': Unsatisfied dependency expressed through field 'cm...原创 2019-02-27 12:13:23 · 7736 阅读 · 0 评论 -
Linux系统(linux mint)下AndroidStudio创建AVD虚拟器出现“/dev/kvm is missing”错误的解决方案
KVM is required to run this AVD. /dev/kvm is not found.我在百度上找了很久都没有解决 最后重新装sdk才发现 我不知道是不是装成 x86的环境。 什么cpu,各种添加用户,还有什么东西 都出现问题,最后迫不得已重转了sdk 换成x64...原创 2019-03-01 21:09:07 · 428 阅读 · 0 评论