_famcoo

导航

 

2020年9月18日

摘要: 方法一:(parseFloat(amount1 + amount2 + amount3 + ......).toFixed(2))toFixed()的参数为小数点后四舍五入保留几位方法二:先乘以10的倍数变成整数,运算后再除以10的倍数 阅读全文
posted @ 2020-09-18 16:55 famcoo 阅读(238) 评论(0) 推荐(0) 编辑
 

2020年8月14日

摘要: ******************************启动************************************ 1.cd 到项目文件夹 2.安装项目 npm install 3.编译 npm run dev 是 vue-cli2 (2.x版) npm run serve 是 阅读全文
posted @ 2020-08-14 19:15 famcoo 阅读(169) 评论(0) 推荐(0) 编辑
 

2020年8月3日

摘要: 1 const routes = [ 2 { 3 path: '/', 4 name: '导航一', 5 component: Main, 6 children: [ 7 { 8 path: '/pageOne', 9 name: '选项一', 10 component: PageOne 11 }, 阅读全文
posted @ 2020-08-03 18:59 famcoo 阅读(298) 评论(0) 推荐(0) 编辑
 
摘要: npm环境安装、配置:https://www.bilibili.com/video/BV1VK4y1v7TK?t=1555 安装成功后,下载包步骤:如下载vue 管理员身份运行 cmd 先运行:npm install -g vue >>> 重启 cmd 查看版本:vue -V >>> 如果显示不是内 阅读全文
posted @ 2020-08-03 14:27 famcoo 阅读(178) 评论(0) 推荐(0) 编辑
 

2020年7月31日

摘要: 报错:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): 原因:mapper 接口与对应的映射 xml 文件放在了用一个包下 解决: 在 prom.xml 的 build 标签下 添加 <b 阅读全文
posted @ 2020-07-31 22:01 famcoo 阅读(170) 评论(0) 推荐(0) 编辑
 

2020年7月7日

摘要: @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = "classpath:/spring-config.xml") 参考:https://blog.csdn.net/weixin_40672761/art 阅读全文
posted @ 2020-07-07 18:22 famcoo 阅读(606) 评论(0) 推荐(0) 编辑
 
摘要: 1.去官网下载maven 2.本地新建一个repository文件夹 3.打开maven 里的conf里的setting.xml (用sublime 打开,其他软件会出现奇奇怪怪的东西),打开前先备份 4.修改local repository属性,地址改为本地repository的地址 <local 阅读全文
posted @ 2020-07-07 09:43 famcoo 阅读(173) 评论(0) 推荐(0) 编辑
 

2020年7月3日

摘要: Server returns invalid timezone. Need to set 'serverTimezone' property. 要把时区设置为上海时区 1.打开properties 2.advance 3.设置VMoptions = -Duser.timezone=Asia/Shan 阅读全文
posted @ 2020-07-03 10:11 famcoo 阅读(220) 评论(0) 推荐(0) 编辑
 

2018年11月22日

摘要: [Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_schema.PROFILING.SEQ' which is 阅读全文
posted @ 2018-11-22 10:34 famcoo 阅读(254) 评论(0) 推荐(0) 编辑