Prevent Redirect on File Upload through form Submittal (React, Express, Multer)

前端 未结 3 1081
没有蜡笔的小新
没有蜡笔的小新 2021-01-24 18:54

I\'m setting up a file uploading functionality for the first time. I have a react front-end and an express server that will store the files. I have it set up so a user can submi

3条回答
  •  暖寄归人
    2021-01-24 19:12

    In your submitForm handler, pass a reference to the event and use event.preventDefault().

        submitForm(event) {
            event.preventDefault();
            ...other code here...
        }
    

    You can also try

    { event.preventDefault(); } }>

提交回复
热议问题