如何使用pycharm调试flask路径

时间:2017-11-06 17:55:13

标签: python flask pycharm

enter image description here

我在看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”?

1 个答案:

答案 0 :(得分:2)

您可以在folder_name = request.form ['superhero']放置一个断点。在调试模式下运行整个项目,当您通过postman(它是一个测试端点的工具)请求端点时,您可以看到您的代码将在该断点处停止。