Antd Pro 报错总结(持更)

  • uncaught at check call: argument fn is undefined
    和后台交互的数据流出现问题,检查dispatch、models、api.js。
  • Cannot read property 'map' of undefined
    从后台来的数据,用.map()遍历,分配给
    {/* {!node ? '' : node.map((item) => {
    return
    })} */}
  • [Invalid attempt to spread non-iterable instance]
    情况1:请求后端的参数有错误。错误:console.log(...fieldsValue); 错误的使用了...
    情况2:使用了错误的数据类型,在该使用数组的情况下使用了对象。用typeof对数据类型进行检查
  • Cannot read property 'props' of undefined
    在constructor()里 bind

你可能感兴趣的:(Antd Pro 报错总结(持更))