gpt4 book ai didi

javascript - 在链接中使用行号的数据表

转载 作者:行者123 更新时间:2023-11-28 04:50:59 25 4
gpt4 key购买 nike

我有一个 ajax 服务器端表,我想简单地添加一个带有图标和链接的列。

我有

{"targets": 4,
"data": null,
"defaultContent": "<a href='#'><i class='fa fa-pencil'></i></a>"}

这将使链接和图标正常放置。

我的问题是当我希望注入(inject) table.row(this).id() 时,我可以将 # 替换为以下内容:

"edit.php?id=" + table.row(this).id

我已经尝试过

"defaultContent": "<a href='" + table.row(this).id() + "'><i class='fa fa-pencil'></i></a>"}

但是它摔倒了。

我知道一些愚蠢的事情,但我们将不胜感激。

                    ],

最佳答案

嗯,我尝试了一切,但最终发现 full[] 是从 ajax 返回的内容,其中一项不是数字索引,而是添加了“row_”的 DT_RowId,因此它成为字符串的一项相当简单的任务前 4 个字符,因此代码为

{"targets": 4,
"data": 'DT_RowId',
render: function(data, type, full, meta) {
return '<a href="edit.php?id='+ data.substring(4) +'"><i class="fa fa-pencil"></i></a>'
}
},

。而且效果很好。感谢您的帮助。

关于javascript - 在链接中使用行号的数据表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42924487/

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