"IncorrectTypeException"我的仪表板程序中



我的回调函数有问题,我试图调试我的代码。它有多个输出,应该显示图形。

@app.callback([ [Output(component_id='plot1', component_property='children'),
Output(component_id='plot2', component_property='children'),
Output(component_id='plot3', component_property='children'),
Output(component_id='plot4', component_property='children'),
Output(component_id='plot5', component_property='children')],
[Input(component_id='input-type', component_property='value'),
Input(component_id='input-year', component_property='value')],
[State('plot1', 'children'), State('plot2', 'children'),
State('plot3', 'children'), State('plot4', 'children'),
State('plot5', 'children')]
])

我不完全确定是什么问题,但我认为它与我的输出参数有关。起初我认为元组有问题,然后我检查了它是否是缩进错误。我甚至还查了一下,它是否与带有"plo4"的除法有关。"plot5"。我花了4个小时寻找可能导致错误的参考资料。我想这和我的输出有关,但是我不知道是什么原因。

我试着联系指导员,但是没有帮助。

任何帮助都将非常感激。错误代码

原来我在回调语句中有一组额外的括号。活到老学到老。

相关内容

  • 没有找到相关文章

最新更新