gpt4 book ai didi

html - 使用 golang 的 DataTable 中的动态 URL

转载 作者:数据小太阳 更新时间:2023-10-29 03:32:31 25 4
gpt4 key购买 nike

我正在尝试使用 golang 在 DataTable 中创建动态 URL

想法是用一些图标从表格中删除一个元素

Screenshot of the table

列是通过直接传递链接在 Controller 中创建的所有这些都是在咨询了 BDD 之后其中连接在字符串中的变量“id”代表每个元素

cadenaS := "<a class='links' href='/history/search/" + id + "'><i class='fas fa-search' aria-hidden='true'></i></a>"

cadenaT := "<a class='links' href='/history/delete/" + id + "'><i class='far fa-trash-alt' aria-hidden='true'></i></a>"

his = append(his, History{ID: ID, Email: Email, Search: Search, Tipo: Tipo, Visited: Visited, Icon: &Icon{Search: cadenaS, Trash: cadenaT}})

为了展示它,调用只是用响应 json 进行的

"columns": [
{"data": "Icon.Search"},
{"data": "Search"},
{"data": "Visited"},
{"data": "Icon.Trash"}
],

将接收删除项目请求的 URL

http.HandleFunc("/history/delete/{id}", deleteHistory)

但从未设法调用电话,因为无法识别 URL 中的“ID”

最佳答案

标准的 http 包不允许 URL 变量。有一些包可以,例如 gorilla mux非常受欢迎,可以为您做到这一点。

关于html - 使用 golang 的 DataTable 中的动态 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53037498/

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