React Native在iOS11中提交数据,出现闪退

React Native 0.44.3版本
iPhone6(iOS11)模拟器
开发评论功能,在评论框中提交数据,出现闪退或直接黑屏

看了RN的官网,不知道问题出在哪里
提交的评论数据是content,代码如下:

let that = this;
if (!this.state.content) {
  return AlertIOS.alert('留言不能为空!')
}
if (this.state.isSending) {
  return AlertIOS.alert('正在评论中!')
}
this.setState({
  isSending: true
}, function () {
  let body = {
    accessToken: 'abc',
    creation: '123',
    content: this.state.content
  };
  let url = config.api.base + config.api.comment;

  request.post(url, body)
    .then(function (data) {
      if (data && data.success) {
        let items = cachedResults.items.slice();
        let content = that.state.content;

        items = [{
          content: content,
          replyBy: {
            avatar: 'http://dummyimage.com/640x640/6bd469)',
            nickname: 'nickname'
          }
        }].concat(items);

        cachedResults.items = items;
        cachedResults.total += 1;

        console.log(cachedResults.items);
        that.setState({
          content: '',
          isSending: false,
          dataSource: that.state.dataSource.cloneWithRows(cachedResults.items)
        });

        that._setModalVisible(false);
      }
    })
    .catch((err) => {
      console.log(err);
      that.setState({
        isSending: false
      });
      that._setModalVisible(false);
      AlertIOS.alert('留言失败,稍后重试!');
    })
})
阅读 2.6k
1 个回答

建议这种时候使用 react-native 的 debugger调试开发,
崩溃时候还能看到日志。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题