如何在react中不分配新值而不返回任何内容


{props.chat.last_message == null? props.chat.notext = '' : props.chat.last_message.text}

我不需要为.notext分配新的值,如果props.chat.last_message == null,也不需要返回任何内容。相反,我应该怎么做,这样当没有消息时,它不会返回任何消息,直到对话开始,它只显示最后一条消息。

props.chat.last_message && props.chat.last_message.text

相关内容

  • 没有找到相关文章

最新更新