我并不是真正的专家,但是每当我尝试运行该程序时,都会出现此错误:AssertionError:视图函数映射正在覆盖现有的终结点函数:home。首先,我想知道这个错误甚至意味着什么,因为我不理解,然后我想修复它,有人吗?
试图删除函数“ home”,但发生了相同的错误,但同一文件中存在另一个函数。
我不知道要输入什么代码,所以我不知道。
@app.route('/')
@app.route('/home')
def home():
return render_template(
'index.html',
title='Home',
year=datetime.now().year,
month=datetime.now().month,
day=datetime.now().day,
hour=datetime.now().hour,
minute=datetime.now().minute,
polls=repository.get_polls(),
)