熊猫:超链接到数据框中的列之一

时间:2019-06-16 01:09:41

标签: python python-3.x pandas dataframe

我是Flask Python的新手。因此,如果我的问题看起来很琐碎或愚蠢,请接受我的道歉。我在html页面上以表格形式显示数据框。我想将一列数据命名为“链接”(包含可点击的链接)到现有数据框中,以便当用户单击列值时,它会转到某个页面。简而言之,我想要这样的东西: enter image description here

我从现有线程How to create a table with clickable hyperlink in pandas & Jupyter Notebook中借用了这个想法。但是,它会产生如下实际输出:

Actual output

这是我的代码的一部分:

@app.route('/', defaults={'path': ''})
@app.route('/<path:path>')
def catch_all(path):
    return redirect(url_for('index'))

有人可以指出我在哪里犯错吗?

1 个答案:

答案 0 :(得分:2)

Jupyter Notebook

一起使用时效果很好

enter image description here