[React] Keep application state on Sync with Browser

Source: Internet
Author: User

Using Pushstate and passing route data via context allows our application to respond to route changes made from Link compo Nents, but using the back and forward buttons in the browser doesn ' t update the application state as we would expect. In this lesson, we'll add event handling to our Router component to handle the history of Popstate events so routing behavior are Maintained for the back and forward buttons.

Import React, {Component} from 'react';ConstGetcurrentpath = () = {    ConstPath =Document.location.pathname; returnPath.substring (Path.lastindexof ('/'));}; ExportclassRouter extends Component { state={Route:getcurrentpath ()}; Handlelinkclick= (route) = = {         This. SetState ({route}); History.pushstate (NULL,"', route);    }; StaticChildcontexttypes ={route:React.PropTypes.string, LinkHandler:React.PropTypes.func}; Getchildcontext () {return{route: This. State.route, Linkhandler: This. Handlelinkclick}; } render () {return (          <div>{ This.props.children}</div>        ); } Componentdidmount () {window.onpopstate = () = {  this. SetState ({Route:getcurrentpath ()})}} 

[React] Keep application state on Sync with Browser

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.