代码如下:
视图代码
coding=utf-8
from flask import Flask,request,url_for,render_template,flash
from models import User
app = Flask(__name__)
@app.route('/login',methods=['POST'])
def login():
form = request.form #接收前端表单传来的内容
username=form.get('username')
password=form.get('password')
if not username: # 如果没有用户名
flash("please input username") #向前端传送消息
return render_template('login.html') #将消息返回到前端
if not password:
flash("please input password")
return render_template('login.html')
if username=='Haha' and password=='123456':
flash('login success')
return render_template('login.html')
else:
flash("username or password is wrong")
return render_template('login.html')
templates下的HTML代码
<!DOCTYPE html>
hello
Hello Login
{{ get_flashed_messages()[0] }}
在postman上测试没有问题,但是用浏览器打开网址“http://127.0.0.1:5000/login/”时会默认用get方法请求网页,因此报“Method Not Allowed The method is not allowed for the requested URL.”错误。
求问怎么在打开网页时,修改get请求到post,正确打开post编写的网页。