react-native – 具有params异常的Alert.alert AlertManager

前端之家收集整理的这篇文章主要介绍了react-native – 具有params异常的Alert.alert AlertManager前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试解决错误消息:

Exception ‘-[_NSDisctionary0 length]: unrecognized selector sent to instance 0x78964120’ was thrown while invoking alerWithArgs on target AlertManager with params

它来自我的代码行:

const response.error = 'bad credentials'
Alert.alert('Login error',response.error,[{ text: 'Ok' }])

即使我从Facebook文档中复制/粘贴,我也会收到错误消息:

Alert.alert(
      'Alert Title','My Alert Msg',[
        {text: 'Ask me later',onPress: () => console.log('Ask me later pressed')},{text: 'Cancel',onPress: () => console.log('Cancel Pressed'),style: 'cancel'},{text: 'OK',onPress: () => console.log('OK Pressed')},]
    )

错误消息中可以明显导入组件.我猜.

有人遇到过这个吗?不知道该怎么做?

对于这个用户来说已经很晚了,但是在这里添加它以防万一其他人发现它有用.

设法通过在没有消息的情况下在世博会中创建警报来导致此问题,它只有标题和按钮.

它引起了上面提到的错误,不仅仅是因为它基本上打破了世博会,并导致其他所有警报也从此失败,看起来就像海报一样.我不得不完全关闭expo应用程序,而不仅仅是重新加载,当然还要为消息添加一个空的”.

原文链接:https://www.f2er.com/react/300950.html

猜你在找的React相关文章