我有一行代码用于自定义按钮页面@html.raw,我想将 id 发送到我想要的 url 但是当我检查调试数据时,出现的是字符串数据,而不是 id = 1 或 2或 3 ..,而是出现字符串 #:data.Id#
index.cshtml
columns: [
{
field: "Name",
title: "Name",
},
{
title: "Action",
width: 200,
template: `@Html.Raw(@Helper.Link("<i class='fa fa-pencil-alt'></i>", new Dictionary<string, string>{{"url","/FamilyCause/Update"},{"id", "#:data.Id#" } }))`,
},
],