在ChatRoom
组件中,我试图在2个用户之间加载聊天,以呈现聊天的用户名。为了聊天,我关闭了getCurrentChat
函数。
ChatRoom
组件
// importing everything
import { getCurrentChat } from '../../actions/chatActions';
class ChatRoom extends Component {
componentDidMount() {
// loading chat between 2 people
this.props.getCurrentChat(this.props.match.params.chatId);
};
render() {
const { loadingCurrentChat } = this.props.chat;
console.log(this.props.chat.currentChat);
return (
<div className="container">
{loadingCurrentChat ? <Spinner /> : (
<div className="row">
<h3>ChatId: {this.props.chat.currentChat._id}</h3>
<h2>Chat between {this.props.chat.currentChat.user1.name} и {this.props.chat.currentChat.user2.name}</h2>
</div>
)}
</div>
)
}
}
const mapStateToProps = (state) => ({
auth: state.auth,
chat: state.chat
});
export default connect(mapStateToProps, { getCurrentChat })(withRouter(ChatRoom));
chatActions.js
export const getCurrentChat = (chatId) => (dispatch) => {
dispatch(setLoadingCurrentChat());
axios.get(`/chat/${chatId}`)
.then(res =>
dispatch({
type: GET_CURRENT_CHAT,
payload: res.data
})
)
.catch(err =>
dispatch({
type: GET_ERRORS,
payload: err
})
);
};
chatReducer.js
// importing everything
const initialState = {
currentChat: {},
loadingCurrentChat: false,
};
export default function (state = initialState, action) {
switch (action.type) {
case SET_LOADING_CURRENT_CHAT:
return {
...state,
loadingCurrentChat: true
}
case GET_CURRENT_CHAT:
return {
...state,
currentChat: action.payload,
loadingCurrentChat: false
}
}
}
我处理chatActions.js
的请求的服务器文件-
chatController.js
// requiring everything
exports.getCurrentChat = (req, res) => {
const chatId = req.params.chatId;
Chat.findById(chatId)
.populate('user1')
.populate('user2')
.exec()
.then(chat => res.json(chat))
.catch(err => res.status(400).json(err));
};
当我尝试console.log
中的currentChat
ChatRoom
时,它会正确显示聊天记录。
currentChat:
messages: []
user1: {
_id: "5d1328a91e0e5320706cdabb",
name: "sarvar",
}
user2: {
_id: "5d131405ce36ce0ebcf76ae1",
name: "jalol makhmudov"
}
__v: 0
_id: "5d329aea3f34fe0b8c6cf336"
如果我渲染currentChat._id
(请参见<h3>
中的ChatRoom
元素),它将正确显示它。
但是如果我渲染currentChat.user1.name
和currentChat.user2.name
(请参见<h2>
中的ChatRoom
元素),则会出现错误
TypeError: Cannot read property 'name' of undefined
答案 0 :(得分:1)
以更精确的形状初始化状态。
const initialState = {
currentChat: {
user1: {}
},
loadingCurrentChat: false,
};
如果无法执行此操作,请先放入currentChat.user1 && currentChat.user1.name
之类的支票,然后再在JSX中对其进行访问。
getCurrentChat
是一个请求,这意味着将花费一些时间来获取数据。 React不会等待请求完成以进行渲染。我们定义initialState
的原因之一是因为在请求完成时,React使用initialState
进行渲染。
在您的情况下,initialState定义为
const initialState = {
currentChat: {},
loadingCurrentChat: false,
};
在JavaScript中,当定义一个空对象currentChat: {}
时,您可以访问其直接子级,而不会出现任何错误。因此currentChat._id
是可访问的,但是由于currentChat.user1
是undefined
,因此currentChat.user1.name
将引发错误。