gpt4 book ai didi

python-3.x - Dash App Table 链接不可点击 - Python Web 应用程序问题

转载 作者:行者123 更新时间:2023-12-04 10:55:04 25 4
gpt4 key购买 nike

Dash App Table 不允许链接可点击。当我将鼠标悬停在标题上时,它们似乎是可点击的链接,但当我点击它们时什么也不做。

以下是我用来构建表的函数:

def build_rows(images,titles,author,category,price,link):
"""
builds a table body. All parameters expect a list type
"""
rows = []
for x in range(len(titles)):
rows.append(html.Tr([html.Img(src=images[x], height="100px"),
html.Td(dcc.Link(titles[x], href=link[x])), # <--- This the problem
html.Td(author[x]),
html.Td(category[x]),
html.Td(price[x]),
html.Td(link[x])]))

table_body = [html.Tbody(rows)]
return table_body

感谢您的帮助。
注意:我总是赞成并在适用时选择正确的答案

最佳答案

如果你只想要一个带有 href 的常规 anchor 标签,那么你想使用 html.A (即 import dash_html_components as html )而不是 dcc.Link .
dcc.Link组件用于 dcc.Location组件,并允许创建单页应用程序,通过将回调函数连接到当前 URL 的值,将不同的布局片段返回到特定的容器元素中。如果这是您想要做的,请参阅 docs关于如何使用 Location成分。

关于python-3.x - Dash App Table 链接不可点击 - Python Web 应用程序问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59259859/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com