How does the react server render isomorphism listen for changes in url parameters to change the display of the page?

in the past, in the react SPA project, I would listen for changes in parameters through the react lifecycle, and then re-request data, but the server rendering does not have this lifecycle, how can I listen?
original code:

componentWillReceiveProps(nextProps) {
        const { location } = this.props;
        if (nextProps.location.pathname !== location.pathname) {
            this.setMetas();
        }
    }

this componentWillReceiveProps life cycle is about to be abandoned.
just listen with subscription of redux .

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b2bd8a-2bae3.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b2bd8a-2bae3.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?