javascript - How prevent rerender of parent component in React.js - Stack Overflow

I have a ponent ProductList - it's a parent ponent. In m render method i wrote such codereturn (&l

I have a ponent ProductList - it's a parent ponent. In m render method i wrote such code

 return (
        <div>
            <CustomBreadCrumbs routes={this.props.routes} params={this.props.params} />
            { this.props.children ? this.props.children :
                <section className="content">
                    Parent
                </section>
            }
        </div>
    );

When I edit some info in child ponent my parent ponent rerender, but i want prevent it. How i can do it?

I have a ponent ProductList - it's a parent ponent. In m render method i wrote such code

 return (
        <div>
            <CustomBreadCrumbs routes={this.props.routes} params={this.props.params} />
            { this.props.children ? this.props.children :
                <section className="content">
                    Parent
                </section>
            }
        </div>
    );

When I edit some info in child ponent my parent ponent rerender, but i want prevent it. How i can do it?

Share Improve this question asked Feb 6, 2017 at 12:52 NickNick 771 gold badge1 silver badge6 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 4

This is impossible, because only on rerendering parent ponent calling rerendering of the child.

As you can see there, if you will prevent rerendring of current element with shouldComponentUpdate, the childs render methods will not hired.

But dont worry React Only Updates What's Necessary. So, if your html of the parent element will not change, the real DOM will update only child`s html.


Show case

There is an example in official documentation, of how to create forms. In a few words, your main problem, is that you dont save your values anywhere, as I see, you use Redux and passing all of the data via props. Try to change your code, to save the data in the own state of the ponent.

And if you will catch an error on BadRequest, you will fire the code, check the equality, for example for message (of an error) and update your ponent, but your current state, with all user`s data will not be changed.

shouldComponentUpdate(nextProps, nextState) {
    //there you will get the new values and check it, if they not equal
}

ponentDidUpdate(prevProps, prevState) {
    //there you can do anything with your new values
}

And if you r using Redux, take a look to Redux Form.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1742272688a4412997.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信