我正在创建一个MVC项目。使用MVC 4和Razor。在构建了一些页面后,我想知道:
之间有什么区别MvcHtmlString.Create()
和
Html.Raw()
如果你能帮助我理解这一点,那会很好。
提前致谢!
答案 0 :(得分:21)
这是查看ASP.NET(http://aspnetwebstack.codeplex.com)可用的源代码的绝佳机会。
查看HtmlHelper.cs,这是Html.Raw()
的代码:
public IHtmlString Raw(string value)
{
return new HtmlString(value);
}
public IHtmlString Raw(object value)
{
return new HtmlString(value == null ? null : value.ToString());
}
这是MvcHtmlString类的代码:
namespace System.Web.Mvc
{
public sealed class MvcHtmlString : HtmlString
{
[SuppressMessage("Microsoft.Security", "CA2104:DoNotDeclareReadOnlyMutableReferenceTypes", Justification = "MvcHtmlString is immutable")]
public static readonly MvcHtmlString Empty = Create(String.Empty);
private readonly string _value;
public MvcHtmlString(string value)
: base(value ?? String.Empty)
{
_value = value ?? String.Empty;
}
public static MvcHtmlString Create(string value)
{
return new MvcHtmlString(value);
}
public static bool IsNullOrEmpty(MvcHtmlString value)
{
return (value == null || value._value.Length == 0);
}
}
}
最重要的区别是Html.Raw()
接受任何对象,而MvcHtmlString.Create()
只接受字符串。
此外,Html.Raw()
返回一个接口,而Create方法返回一个MvcHtmlString对象。
最后,Create以不同方式处理null。
答案 1 :(得分:5)
没有实际差异。
MvcHtmlString.Create
创建MvcHtmlString
的实例,而Html.Raw
方法创建HtmlString
的实例,但MvcHtmlString
只是继承自HtmlString
,所以他们的工作方式相同。