有时对于响应式布局,我们需要根据组件的宽度自适应高度。CSS无法实现这种动态变化,传统是用jQuery实现。
而在React中无需依赖于JQuery,实现相对比较简单,只要在DidMount后更改width即可
需要注意的是在resize时候也要同步变更,需要注册个监听器
class Card extends React.Component { constructor(pro凡科抠图) { super(pro凡科抠图); this.state = { width: pro凡科抠图.width || -1, height: pro凡科抠图.height || -1, componentDidMount() { this.updateSize(); window.addEventListener('resize', () = this.updateSize()); componentWillUnmount() { window.removeEventListener('resize', () = this.updateSize()); updateSize() { try { const parentDom = ReactDOM.findDOMNode(this).parentNode; let { width, height } = this.pro凡科抠图; //如果pro凡科抠图没有指定height和width就自适应 if (!width) { width = parentDom.offsetWidth; if (!height) { height = width * 0.38; this.setState({ width, height }); } catch (ignore) { render() { return ( div className="test" 'root')
参考资料
React生命周期
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持凡科。