答案 0 :(得分:-1)
您还应该检查popperRef
是否具有属性current
,该属性本身应具有属性popper
。
if( popperRef ) {
if( popperRef.hasOwnProperty('current') ) {
if( popperRef.current.hasOwnProperty('popper') ) {
if( popperRef.current.popper !== event.target ) {
// ...
}
}
}
}