0
所以我讓我的燒瓶應用程序的錯誤,說:瓶:預期的縮進塊
File app.py, line 13
first = request.form.get('first')
IndentationError: expected an indented block
這裏是我的app.py代碼
import time
import requests
import requests_cache
from flask import Flask, render_template, request, jsonify
app = Flask(__name__)
@app.route('/', methods=['GET', 'POST'])
def home():
if request.method == 'POST':
first = request.form.get('first')
url = "http://myAPIURL.com/ws/spm/search/perfid/{0}".format(first)
response = requests.get(url)
return jsonify(response.json())
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True)
我檢查了缺口,他們似乎對我來說很好,
有人能指出我做錯了什麼嗎?
你確定你不混合標籤和空格嗎? – Celeo
@Celeo:好的,我現在再檢查一遍。 – Akki
是的,我在一個縮進中使用了空間:) 看來我還需要一些睡眠:P – Akki