我正在使用React(Next.js)开发一个Web应用程序并使用Rxjs。当我点击网页的第一页并再次点击其他页面时。发生错误。
我试着检查这样的道具。但它不起作用。我现在应该怎么做?提前谢谢
isLoad = () => {
var ud = 'undefined'
if (
typeof this.props.tournament != ud &&
typeof this.props.currentTournament != ud
) {
return true
} else {
return false
}
}