欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[Vue warn]: Invalid prop: type check failed for prop "value". Expected Number, got String.

程序员文章站 2022-04-13 11:41:22
...

最近项目前端开发,使用了比较酷的Vue,描述一下小白遇到的问题

1.异常描述:

警告:[Vue warn]: Invalid prop: type check failed for prop "value". Expected Number, got String.

[Vue warn]:无效的道具:类型检查失败的道具“值”。期望数字,得到字符串。

[Vue warn]: Invalid prop: type check failed for prop "value". Expected Number, got String.

该异常是一个警告,不解决也不影响效果,但调式时看着实在不爽。。。

2.分析:从上面简单分析是类型不对应引起的。

因为 InputNumber 控件的value接收的是number类型。

首先,查看类型,把return里面 属性 的默认值修改为0,不能是'' 。

此外,检查接口返回类型是否是整数型

[Vue warn]: Invalid prop: type check failed for prop "value". Expected Number, got String.

修改接口返回类型

[Vue warn]: Invalid prop: type check failed for prop "value". Expected Number, got String.

 

问题解决。

 

 

 

 

相关标签: VUE