gpt4 book ai didi

javascript - 检查元素是否有滚动-reactjs

转载 作者:行者123 更新时间:2023-12-01 02:16:57 27 4
gpt4 key购买 nike

我有<table>包含在<div>中。每当我们有更多数据时 <div>在这种情况下会有垂直滚动,我想使表格宽度为 100% ,如果不存在垂直滚动,我想使表格宽度为 98% 。

render() {
return (
<div onScroll={this.handleScroll} className="scroll-property">
<table className="react-listing-table table" width={this.setWidth()+'%'}>
...
);
}

setWidth(){
let dom = ReactDOM.findDOMNode(this).parentNode;
let hasVerticalScrollbar = dom.scrollHeight > dom.clientHeight;

if (hasVerticalScrollbar) {
return 100;
} else {
return 98;
}
}

问题是我无法找到父 domNode,即从表中查找 div 并获取运行时错误

typeError: Cannot read property 'parentNode' of null

请指导我

最佳答案

当在 render 函数中调用 setWidth 时,DOM 实际上还不存在。这是您想要在 componentDidMount 中执行的操作,也可能在 componentDidUpdate 中执行,使用表的引用。

tableRef = null

render() {
return (
<div onScroll={this.handleScroll} className="scroll-property">
<table className="react-listing-table table" ref={el => this.tableRef = el}>
...
);
}

componentDidMount() {
this.tableRef.width = this.setWidth() + '%'
}

componentDidUpdate() {
this.tableRef.width = this.setWidth() + '%'
}

关于javascript - 检查元素是否有滚动-reactjs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49439946/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com