简体   繁体   English

Pycharm 烧瓶路线断点不起作用

[英]Pycharm flask route breake point not working

Breakpoint never reached for breakpoint.断点从未达到断点。

def new():
    try:
        db = get_db()
        cur = db.cursor()
        group_list = cur.execute('select name,count(name) from ac_group group by name').fetchall()         
    except sqlite3.Error as err:
        print(err)

    return render_template('group/newgroup.html', group_list=group_list)

I want to know what is in the list before it passes to the route.我想在传递到路由之前知道列表中的内容。

I got it我知道了

I just shutdown the system and restarted and the debugging on root really working我只是关闭系统并重新启动,root 上的调试确实有效

Some time issue with pycharm pycharm 的一些时间问题

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM