gpt4 book ai didi

asp.net - MVC 3 htmlhelper扩展方法来环绕内容

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

我搜索了MVC 3 htmlhelper以创建包装器方法,但找不到任何快速解决方案。我正在寻找的是这样的:

@html.createLink("caption", "url")
{
<html> content in tags </html>
}

结果应该有
<a href="url" title="Caption">
<html> content in tags </html>
</a>

任何帮助。

最佳答案

使用BeginForm进行此操作的方式是,返回类型MvcForm表示IDisposable,以便在using语句中使用时,DisposeMvcForm方法写出结束的</form>标记。

您可以编写一个扩展方法来执行完全相同的操作。

这是我刚刚写的要演示的内容。

首先,扩展方法:

public static class ExtensionTest
{
public static MvcAnchor BeginLink(this HtmlHelper htmlHelper)
{
var tagBuilder = new TagBuilder("a");
htmlHelper.ViewContext.Writer
.Write(tagBuilder.ToString(
TagRenderMode.StartTag));
return new MvcAnchor(htmlHelper.ViewContext);
}
}

这是我们的新类型MvcAnchor:
public class MvcAnchor : IDisposable
{
private readonly TextWriter _writer;
public MvcAnchor(ViewContext viewContext)
{
_writer = viewContext.Writer;
}

public void Dispose()
{
this._writer.Write("</a>");
}
}

在您看来,您现在可以执行以下操作:
@{
using (Html.BeginLink())
{
@Html.Raw("Hello World")
}
}

结果如下:

<a>Hello World</a>

稍微扩展一下即可满足您的确切要求:
public static MvcAnchor BeginLink(this HtmlHelper htmlHelper, 
string href,
string title)
{
var tagBuilder = new TagBuilder("a");
tagBuilder.Attributes.Add("href",href);
tagBuilder.Attributes.Add("title", title);
htmlHelper.ViewContext.Writer.Write(tagBuilder
.ToString(TagRenderMode.StartTag));
return new MvcAnchor(htmlHelper.ViewContext);
}

和我们的看法:
@{
using (Html.BeginLink("http://stackoverflow.com", "The Worlds Best Q&A site"))
{
@Html.Raw("StackOverflow - Because we really do care")
}
}

结果如下:

<a href="http://stackoverflow.com" title="The Worlds Best Q&amp;A site">
StackOverflow - Because we really do care</a>

关于asp.net - MVC 3 htmlhelper扩展方法来环绕内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10635063/

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