Django Plotly Dash - Pass the select value from dcc.dropdown to url

Dears,

I’m new in plotly-dash, but I’m trying to integrate a plotly-dash application in django application, and I’m having difficult to send a selected value from dcc.dropdown to url, for example: (url : mypage/id_fail==variable).

Follow down my dropdown:

app = DjangoDash(‘Fails’, external_stylesheets=external_stylesheets,
add_bootstrap_links=True)
dbc.Row([
dbc.Col(
dcc.Dropdown(
id=‘dd_id_fail’,
options=[{‘label’: str(row[0]) + ’ - ’ + str(row[2]), ‘value’: row[0]} for i, row in
sorted(dtpclass.fail_description_df().iterrows())],
value=[pddfdata[‘id_fail’].unique()[0]],
multi=True
), width={“size”: 4},

Please, someone can teach me how to send the dcc.dropdown selected value to url?
Thank you very much!