gpt4 book ai didi

asp.net-mvc - 使用MVC3 WebGrid帮助器将连字符添加到html属性名称

转载 作者:行者123 更新时间:2023-12-03 09:07:22 24 4
gpt4 key购买 nike

尝试将自定义HTML5数据属性添加到使用WebGrid助手呈现的表时遇到问题。我希望表格标签如下所示:

<table data-test="testdata"><!-- Table Content --></table>

这是使用Razor View 引擎的示例 View :
@{
var myUser = new
{
Id = 1,
Name = "Test User"
};

var users = new[] { myUser };

var grid = new WebGrid(users);
}
@grid.GetHtml(htmlAttributes: new { data-test = "testdata"})

最后一行将生成“无效的匿名类型成员声明器”。错误,因为数据测试中的连字符。

与其他一些HtmlHelpers输入一起,您可以使用下划线代替连字符,并且在呈现时会自动将其更改为连字符。 WebGrid不会发生这种情况。

如果我通过htmlAttributes字典:
@grid.GetHtml(htmlAttributes: new Dictionary<string, object> {{ "data-test", "testdata"}})

该表将按以下方式呈现:
<table Comparer="System.Collections.Generic.GenericEqualityComparer`1[System.String]" Count="1" Keys="System.Collections.Generic.Dictionary`2+KeyCollection[System.String,System.Object]" Values="System.Collections.Generic.Dictionary`2+ValueCollection[System.String,System.Object]"><!-- Table Content --></table>

我做错了什么,该如何根据需要呈现属性?

最佳答案

恐怕这是不可能的。不幸的是,WebGrid不支持与标准HTML帮助器(如TextBoxFor)相同的语法,您可以在其中进行以下操作:

@Html.TextBoxFor(x => x.SomeProp, new { data_test = "testdata" })

下划线将自动转换为破折号。

关于asp.net-mvc - 使用MVC3 WebGrid帮助器将连字符添加到html属性名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4888822/

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