我正在尝试使用Inputs在Web上创建破折号表。但是问题是,数据是通过回调和先验从数据库创建的, 我不知道这些列的名称,除非使用回调函数创建了pandas dataframe。 我已经检查过我获得了正确的数据。但是无法显示它。我使用了多个输出选项(使用Dash 0.41)
我的代码如下:(我没有提供在回调 someFunc 中生成熊猫数据框的函数的详细信息, 因为对于此Dash代码TroubleShooting而言,这并不重要。
import dash_table as dt
def someFunc(ID, pattern_desc, file_path):
## do something
return df # pandas dataframe
#
external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css']
app = dash.Dash(__name__, external_stylesheets=external_stylesheets)
server = app.server
app = dash.Dash(__name__)
app.config.suppress_callback_exceptions = True
app.css.config.serve_locally = True
app.scripts.config.serve_locally = True
app.layout = html.Div(
children = [
html.Div(
id = 'title',
children = appTitle,
className = 'titleDiv'
),
html.Div(
children = [
html.Div(
children = "Enter ID:",
className = 'textDiv'
),
dcc.Input(
id = 'ID',
type = 'text',
value = 'ABCER1',
size = 8),
html.Div(
children = "Enter Test Pattern",
className = 'textDiv'
),
dcc.Input(
id = 'pattern_desc',
type = 'text',
value = 'Sample',
size = 20),
html.Div(
children = "Enter File OutPut Path:",
className = 'textDiv'
),
dcc.Input(
id = 'file_path',
type = 'text',
value = '',
size = 30),
html.Button(
id = 'submit',
n_clicks = 0,
children = 'Search'
)
]
),
html.Div(
id = 'tableDiv',
children = dash_table.DataTable(
id = 'table',
style_table={'overflowX': 'scroll'},
style_as_list_view=True,
style_header={'backgroundColor': 'white','fontWeight':
'bold'},
),
className = 'tableDiv'
)
]
)
# callback to update the table
@app.callback([Output('table', 'data'),Output('table', 'columns')]
[Input('submit', 'n_clicks')],
[State('ID', 'value'), State('pattern_desc', 'value'),
State('file_path', 'value')])
def update_table(n_clicks, ID, pattern_desc, file_path):
df = someFunc(ID, pattern_desc, file_path)
mycolumns = [{'name': i, 'id': i} for i in df.columns]
return html.Div([
dt.DataTable(
id='table',
columns=mycolumns,
data=df.to_dict("rows")
)
])
因此,在这种情况下,使用3个输入参数的函数 someFunc 返回一个pandas数据框,该数据框根据输入可以具有不同的列。因此,应用布局应显示 回调函数的输出根据输入动态给出的那些列。 我应该用表格和列填充网页,但是却出现错误。运行此命令时,我会将通过函数生成的数据获取到文件中,但是破折号无法 生成了网页上的表格。我收到以下错误:
dash.exceptions.InvalidCallbackReturnValue:回调..table.data ... table.columns ..是一个多输出。 预期输出类型为列表或元组,但得到Div([DataTable(columns = [{'name':'pattern_desc','id':'pattern_desc'},...... >
不确定如何实现。任何帮助将不胜感激。
答案 0 :(得分:1)
错误消息非常简单。装饰器@app.callback([Output('table', 'data'),Output('table', 'columns')], ...)
指定2个输出,因此该函数应返回一个元组(data, columns)
而不是一个html.Div(...)
值。
答案 1 :(得分:0)
宜兴上面所说的是正确的-因此,如果您只想将数据和列返回到table
数据表中,则return语句应该只是df.to_dict("rows"), mycolumns
。
如果您希望按现在的方式保留return语句,则将装饰器更改为
`@app.callback(Output('tableDiv', 'children'),
[Input('submit', 'n_clicks')],
[State('ID', 'value'),
State('pattern_desc', 'value'),
State('file_path', 'value')])`
我想说第一种选择是可取的。