我無法從瀏覽器獲得http://127.0.0.1:5000/user1 Url每次它給404和http://127.0.0.1:5000它給舊的輸出,我試過了(一些其他字符串「Hello瓶」),而不是「你好,世界」 我試過關閉我的IDE,並再次嘗試,即使我已經創建了另一個項目,但問題仍然存在蟒蛇燒瓶應用程序路線不按預期工作
在此先感謝!
#imports
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'hello world!'
#add users to collection "app_users"
@app.route('/user1',methods=['POST'])
def add_user():
if not request.json or not 'email_id' in request.json:
abort(404)
print("processing")
insert(request)
return flask.jsonify({'status': "inserted successfully"}), 201
if __name__ == '__main__':
app.run()