断点从未达到断点。
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)
在传递到路线之前,我想知道列表中的内容。
答案 0 :(得分:0)
我明白了
我刚刚关闭系统并重新启动,并且在root上的调试确实有效
pycharm出现一些时间问题