【发布时间】:2019-09-13 19:16:16
【问题描述】:
我正在使用聊天 (react-native-gifted-chat) 和 firebase-firestore 制作应用程序,但在显示它们时遇到问题,因为当我发送消息时,它们会重复他们已经发送的内容,但这只是视觉效果按数据还可以 怎么解决?
【问题讨论】:
标签: react-native react-native-gifted-chat
我正在使用聊天 (react-native-gifted-chat) 和 firebase-firestore 制作应用程序,但在显示它们时遇到问题,因为当我发送消息时,它们会重复他们已经发送的内容,但这只是视觉效果按数据还可以 怎么解决?
【问题讨论】:
标签: react-native react-native-gifted-chat
if(doc._id === this.state.user.uid){
messages = {
_id: Math.round(Math.random() * 1000000), // () => hacia quien se envia
createdAt: new Date(doc.createdAt.seconds * 1000),
text: doc.text,
user: {
_id: this.state.uid2, // quien lo envia => ()
name: this.state.chat
}
}
} else {
messages = {
_id: Math.round(Math.random() * 1000000),
createdAt: new Date(doc.createdAt.seconds * 1000),
text: doc.text,
user: {
_id: this.state.user.uid,
name: this.state.user.displayName
}
}
}
【讨论】: