我在看https://github.com/ibininja/upload_file_python。我正在使用pycharm 2017在win 7中工作。主要代码包含:
@app.route("/upload", methods=["POST"])
def upload():
folder_name = request.form['superhero']
'''
# this is to verify that folder to upload to exists.
if os.path.isdir(os.path.join(APP_ROOT, 'files/{}'.format(folder_name))):
print("folder exist")
'''
target = os.path.join(APP_ROOT, 'files/{}'.format(folder_name))
print(target)
我想在pycharm中调试它。我可以在屏幕截图中调试'/'路由。如何调试特定的烧瓶路线,如“/ upload”?
答案 0 :(得分:2)
您可以在folder_name = request.form ['superhero']放置一个断点。在调试模式下运行整个项目,当您通过postman(它是一个测试端点的工具)请求端点时,您可以看到您的代码将在该断点处停止。