我有一个模板(index.html
),我想在GET
上显示该模板,并在POST
上添加一个变量的相同模板。
app.py:
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def hello():
return render_template("index.html")
@app.route("/", methods=["POST"])
def hello_():
return render_template("index.html", string_="Success!")
if __name__ == "__main__":
app.run(host='0.0.0.0', port=4567)
的index.html:
<html>
<head>
<script type="text/javascript" src="/static/jquery.js"></script>
</head>
<body>
<button onclick="signIn();">Sign In</button>
<h1>{{ string_ }}</h1>
<script>
function signIn() {
var data = "data";
$.ajax({
type : "POST",
data: JSON.stringify(data, null, '\t'),
contentType: 'application/json',
success: function(result) {
console.log(result);
}
});
}
</script>
</body>
</html>
回溯:
* Running on http://0.0.0.0:4567/ (Press CTRL+C to quit)
127.0.0.1 - - [11/Dec/2015 11:16:17] "GET / HTTP/1.1" 200 -
127.0.0.1 - - [11/Dec/2015 11:16:17] "GET /static/jquery.js HTTP/1.1" 304 -
127.0.0.1 - - [11/Dec/2015 11:16:21] "POST / HTTP/1.1" 200 -
我没有收到错误,但变量string_
没有出现在POST
上的模板中(点击按钮后)。我设置为POST
呈现的模板似乎无效。
是否可以根据request.method
?
答案 0 :(得分:0)
最合理的做法是将其拆分为两条不同的路线,一条服务于GET
,另一条服务于POST
。
@app.route('/')
def index_as_get():
return render_template('index.html', name="")
@app.route('/', methods=["POST"])
def index_as_post():
r = request.get_json()
name = r['name']
return render_template('index.html', name=name)
请注意,您实际上必须通过REST客户端调用此行为,该客户端可以在您注意到任何内容之前调用对根页面的POST请求。