我得到一个空白页,并显示错误无法 POST/registration/step-two。

我正在尝试创建多步注册。我的主要组件的渲染功能如下:

render() {
    const languageReg = this.props.currentLanguage.default.registrationPage;


    let stepOne = (this.props.params.id == 'step-one') ? <RegistrationFormStepOne actionSaveUser={this.props.actionSaveUser} currentLanguage={languageReg}/> : "";
    let stepTwo = (this.props.params.id == 'step-two') ? <RegistrationFormStepTwo actionSaveUser={this.props.actionSaveUser} currentLanguage={languageReg}/> : "";

    return (
        <div className="sidebar-menu-container" id="sidebar-menu-container">

            <div className="sidebar-menu-push">

                <div className="sidebar-menu-overlay"></div>

                <div className="sidebar-menu-inner">
                    <div className="contact-form registrationForm">
                        <div className="container">
                            <div className="row">
                                <div className="col-md-10 col-md-offset-1 col-md-offset-right-1">
                                    {stepOne}
                                    {stepTwo}
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    );
}

在 RegistrationFormStepOne 中,我具有单击功能,如下所示:
handleClick(){
    let data = {name: "stepOne", values: [this.state.user]};
    this.context.router.push("/registration/step-two");
}

当我点击这个按钮时,网址应该是 http://localhost:3000/registration/step-two 但我收到了 Cannot POST /registration/step-two 错误。

当我直接输入 http://localhost:3000/registration/step-two 时,它工作正常。

我正在使用 reactNoConfiguration App

有什么建议吗?

最佳答案

问题出在句柄点击功能上。我忘了防止违约。我把它改成:

handleClick(event){
     event.preventDefault();
     let data = {name: "stepOne", values: [this.state.user]};
     this.context.router.push("/registration/step-two");
}

它奏效了。

关于reactjs - 无法发布错误 react js,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39724481/

10-13 01:43