gpt4 book ai didi

javascript - 在 Grid.js 中使用 HTML 填充单元格

转载 作者:行者123 更新时间:2023-12-02 16:38:08 25 4
gpt4 key购买 nike

如何在 Grid.js 中用 HTML 内容填充单元格? ?

最佳答案

首先导入html函数:

import { Grid, html } from "gridjs";

然后在 formatter 函数中或直接在 data 中使用它:

const grid = new Grid({
columns: [
{
name: 'Name',
formatter: (cell) => html(`<b>${cell}</b>`)
},
'Email',
{
name: 'Actions',
formatter: (_, row) => html(`<a href='mailto:${row.cells[1].data}'>Email</a>`)
},
],
data: Array(5).fill().map(x => [
faker.name.findName(),
faker.internet.email(),
null
])
});

另请查看 https://gridjs.io/docs/examples/html-cells

关于javascript - 在 Grid.js 中使用 HTML 填充单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62244896/

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