workers-airtable-form icon indicating copy to clipboard operation
workers-airtable-form copied to clipboard

Direct user to another page after submission

Open brentrealbt opened this issue 11 months ago • 1 comments

Is there an easy way to direct the user to another page upon form submission? Whenever I use this I get a "Not Found" upon form completion.

brentrealbt avatar Mar 25 '24 03:03 brentrealbt

Hello @brentrealbt, Yes, there is an easy way to do a page redirect upon form submission.

Within the Worker script (i.e. the 'index.js' file), and under export default{ }, you may replace the line

return new Response('Not found', { status: 404 })

with that of

return Response.redirect(destinationURL, statusCode)

Reference: Redirect - Cloudflare Workers Docs

aviswaroop avatar Jul 14 '24 11:07 aviswaroop