我有一个简单的Dash回调函数,如下所示:

@app.callback(
    dash.dependencies.Output('test_output', 'children'),
    [dash.dependencies.Input('test_input', 'value')]):
def process(val):
    return html.Div('test')


现在我要设置一些cookie。正如我们在Dash的源代码中看到的那样,包装器函数使通常的Flask Response对象具有序列化的返回数据:

def wrap_func(func):
    def add_context(*args, **kwargs):

        output_value = func(*args, **kwargs)
        response = {
            'response': {
                'props': {
                    output.component_property: output_value
                }
            }
        }

        return flask.Response(
            json.dumps(response,
                       cls=plotly.utils.PlotlyJSONEncoder),
            mimetype='application/json'
        )

    self.callback_map[callback_id]['callback'] = add_context

    return add_context


因此,如果此代码是我项目的一部分,则在此处使用Response.set_cookie

会话的情况似乎有所不同-我可以从包装函数访问和修改会话对象,从而导致修改session cookie。

如何从Dash回调中设置和获取Cookie?也许Flask无需直接创建Response对象就能做到这一点?

更新

我为此创建了一个问题:
https://github.com/plotly/dash/issues/182

并请求添加此功能:
https://github.com/plotly/dash/pull/183

最佳答案

您寻找的功能最终合并到了:
https://github.com/plotly/dash/pull/623(于2019年3月4日)

他们关于如何设置Cookie的示例如下所示:

@app.callback(Output('output', 'children'), [Input('input', 'value')])
def update_output(value):
    dash.callback_context.response.set_cookie(
        'dash cookie', value + ' - cookie')
    return value + ' - output'

关于python - 如何通过Plotly从Dash中的回调函数访问cookie?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47945841/

10-12 18:46