this.context.router.push() 不能跳转

代码:

class Component extends React.Component {


static contextTypes = {

    router:PropTypes.object.isRequired

};

handleSubmit (e) {

   ...

    fetch('xxx', {

        ...

    })

        .then(...)

        .then((res) => {

            if (...) {

                this.context.router.push('xxx');

                return;

                ...

报错:

https://img4.mukewang.com/5c3c2ead0001129904350067.jpg

不太明白这个报错_this2是什么意思


斯蒂芬大帝
浏览 397回答 1
1回答

慕姐8265434

this.context.router.history.push
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript