想知道是否有人可以帮助我。
我正在使用此示例CSV to HTML Table
我正在尝试将其他列格式化为超链接,但老实说没有js技能会非常感谢任何帮助。下面的示例显示了一列的代码。
Spring Boot
答案 0 :(得分:0)
csv-to-html-table的文档声明:
如果要为一个或多个列执行自定义格式设置,则可以 传入一个包含列索引和数组的数组 用于格式化的自定义函数。您可以传入多个格式化程序 它们将按顺序执行。
在下面的示例中,我演示了多个链接的数组数组。在我的示例中,第4列和第6列有链接。
<script>
//my custom function that creates a hyperlink
function format_link(link){
if (link)
return "<a href='" + link + "' target='_blank'>" + link + "</a>";
else
return "";
}
//initializing the table
CsvToHtmlTable.init({
csv_path: 'data/Health Clinics in Chicago.csv',
element: 'table-container',
allow_download: true,
csv_options: {separator: ',', delimiter: '"'},
datatables_options: {"paging": false},
custom_formatting: [[4, format_link], [6, format_link]] //execute the function on the 4th column of every row
});
</script>