bug:1、the last packet sent successfully to the server was 0 milliseconds ago 2、avoid mutating a prop

1、the last packet sent successfully to the server was 0 milliseconds ago

错误提示

the last packet sent successfully to the server was 0 milliseconds ago

问题简述

在启动spring-boot项目时,会提示这个错误,这个问题十有八九是数据库连接的问题,因为数据库链接错误等导致项目启动时链接不上数据库

问题解决

果不其然,问题出在了配置文件,使用的数据库的url错误,修改后就好了。

2、avoid mutating a prop

错误提示

JsonMappingException: out of START_ARRAY token

问题简述

在使用vue作为前端框架,对接接口时,子组件直接修改了父组件传过来的props,这导致了上述错误的出现。

问题解决

正常情况下,如果需要子组件修改父组件的相关的值,可以通过this.$emit("update:xxx",xxx) 来实现。
示例:
父组件:

<Child :test.sync="fatherTest"></Child>

子组件:

this.$emit("update:test",nowVal)

你可能感兴趣的:(bug收集,java,vue.js)