Quantcast
Channel: Flask Post is not coming to the Same Page - Stack Overflow
Browsing latest articles
Browse All 3 View Live

Answer by Manu for Flask Post is not coming to the Same Page

You have to use <form action="/" method="POST>.....</form> , not action="post"Action corresponds to the destination route for the desired HTTP Request.

View Article



Answer by PiAreSquared for Flask Post is not coming to the Same Page

The action attribute should be the URL you want to POST to, while the method attribute should be the method you want to use. So in your case, it would be:<form action="/" method="post">In flask,...

View Article

Flask Post is not coming to the Same Page

I made a simple HTML:<!DOCTYPE html><html><head><title>Form to Post</title><form action="post"><input type="text" name="theinput"><br><input...

View Article
Browsing latest articles
Browse All 3 View Live




Latest Images