反应原生 AwesomeAlert 自定义视图抛出错误



我正在使用react-native-awesome-alerts插件在屏幕中显示警报。我已经为警报创建了一个自定义视图,但它给我抛出了这个错误

无法将没有 YogaNode 的孩子添加到没有测量功能的父母!(尝试将"RCTRawText [text: }]"添加到"RCTView")

我的代码是这样的:

_displayNotifyAlert(){
  if(this.state.notifyAlert == true){
    return (
      <AwesomeAlert
        show={true}
        title="Service Cancellation"
        message="Tell the shop why are you cancelling their services."
        messageStyle={{ textAlign: 'center' }}
        customView={this.renderCustomAlertView()}
        showCancelButton={true}
        showConfirmButton={true}
        cancelText="Cancel"
        confirmText="Cancel Service"
        confirmButtonColor={Colors.default}
        onCancelPressed={() => this._closeNotifyAlert()}
        onConfirmPressed={() => this._cancelServices()}
      />
    )
  }
}
renderCustomAlertView = () => (
  <View style={[ AppStyles.input ]}>
    <TextInput
      placeholder="Write your reason briefly."
      underlineColorAndroid="transparent"
      style={{ textAlignVertical: 'top', height: 100 }}
      numberOfLines={5}
      multiline={true}
      maxLength={200}
      onChangeText={(cancel_reason) => this.setState({cancel_reason})} />
    }
  </View>
)

如果我customView={this.renderCustomAlertView()}删除此行,错误将消失。我没有看到我在renderCustomAlertView函数中输入的任何不正确的代码。所以我无法追踪错误的原因。以前有没有人遇到过同样的问题?

renderCustomAlertView函数末尾有一个额外的"}"。将此功能更改为以下内容,它应该可以工作:

renderCustomAlertView = () => (
  <View style={[ AppStyles.input ]}>
    <TextInput
      placeholder="Write your reason briefly."
      underlineColorAndroid="transparent"
      style={{ textAlignVertical: 'top', height: 100 }}
      numberOfLines={5}
      multiline={true}
      maxLength={200}
      onChangeText={(cancel_reason) => this.setState({cancel_reason})} />
  </View>
)
由于

声誉低,我无法在您的帖子中发表评论,所以我将其作为答案。根据我在反应本机和基于您的代码的知识,您在渲染自定义警报视图中缺少返回。

所以你的代码必须是这样的

   renderCustomAlertView = () => {
             return(
              <View style={[ AppStyles.input ]}>
                  <TextInput
                     placeholder="Write your reason briefly."
                     underlineColorAndroid="transparent"
                     style={{ textAlignVertical: 'top', height: 100 }}
                     numberOfLines={5}
                     multiline={true}
                     maxLength={200}
                     onChangeText={(cancel_reason) => this.setState({cancel_reason})} />
           </View>
     )
   }

相关内容

  • 没有找到相关文章

最新更新