gpt4 book ai didi

c# - AllowHtml 不适用于数组

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

我在 ASP.NET MVC 项目中使用了 AllowHtml 属性,但它不适用于我的 View 模型中的数组。如果该属性不是数组,则该属性起作用。现在,我无法验证我的 html 标签。

有什么建议吗?谢谢

[AllowHtml]

public string[] ContentText { get; set; }

错误:

A potentially dangerous Request.Form value was detected from the client

最佳答案

它不适用于数组。 它必须是一个简单的字符串属性才能起作用。你能做的是

public class ContentText { [AllowHtml]public string Text { get; set; } }

然后让主模型将此 ContentText 的集合作为属性:

public class ContentTextCollection { public ContentText [] Texts { get; set; } }

关于c# - AllowHtml 不适用于数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33257752/

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