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('留言失败,稍后重试!');
})
})
建议这种时候使用 react-native 的 debugger调试开发,
崩溃时候还能看到日志。