Received NaN for the `children` attribute. If this is expected, cast the value to a string.

Received NaN for the children attribute. If this is expected, cast the value to a string.

啥意思: 为children属性接收NaN。 如果这是预期的,则将值强制转换为字符串。

剩下的交个自己分析问题在那个文件里面

	<div className={
    
    styles.talentsdeggetlic}>{
    
    (formData.budget * 10000)}</div>/

经过排查这块代码引起的报错

解决方案:

<div className={
    
    styles.talentsdeggetlic}>{
    
    (formData.budget * 10000).toString()}</div>/

猜你喜欢

转载自blog.csdn.net/weixin_53532986/article/details/122230236
今日推荐