2021-06-24
Posted 苏格拉的底
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2021-06-24相关的知识,希望对你有一定的参考价值。
今天遇到一个这个问题说是什么类型不对,结果找到最后我类型没有定义错,接口写错了,也保证错误。
request.js?b775:72 Uncaught (in promise) Error: Failed to convert value of type ‘java.lang.String’ to required type ‘java.lang.Long’; nested exception is java.lang.NumberFormatException: For input string: “userLockManage”
at _default (request.js?b775:72)
数据库和实体类类型比对
实体类id要写个@JsonFormat(shape = JsonFormat.Shape.STRING)
时间写这个
vue的时间显示格式:
<el-table-column prop="createTime" label="创建时间" width="150">
<template slot-scope="scope">
<span> parseTime(scope.row.createTime, 'y-m-d') </span>
</template>
</el-table-column>
以上是关于2021-06-24的主要内容,如果未能解决你的问题,请参考以下文章