我正在使用jqgrid,我在服务器上创建列定义作为动态对象,并使用Json.Encode序列化它们:
html.Raw(System.Web.Helpers.Json.Encode(ColumnDefinition);
我在应用自定义格式化程序时遇到问题,因为我的序列化列定义是:
{"name":"Icon","index":"Icon","hidden":false,"formatter":"iconFormatter","unformat":{}}
问题在于引用,它们被添加到所有键和值以尊重JSON规范,而 iconFormatter 周围的问题在我的情况下是问题,因为我希望它是我的函数。 对此有一个简单的解决方案吗?