0
如果我有一個包含頭 - > body - > footer的包裹,我如何計算正文內容的高度。查找反應組件中身體內容的高度
我已經建立了我的包裝像這樣:
var DefaultWrapper = React.createClass({
render: function() {
return <div>
<Header currentPage={this.props.children.type.displayName} />
{this.props.children}
<Footer position={this.state.position} />
</div>
}
});
我想計算任何組件的高度/頁被添加到this.props.children
。