是否可以从 ViewModel 返回 ActionLink html? (MVC3+剃刀)

发布于 2024-11-11 18:42:00 字数 550 浏览 0 评论 0原文

我有四个视图模型/视图,它们显示相似但不同的数据。

是否可以在视图模型上设置一个属性来重新调整 ActionLinks(或它们的 html?)

例如 目前我对我的每一个观点都有

<table>
<tr>
<td>@Html.ActionLink("My Open Calls", "MyOpenCalls")</td>
<td>@Html.ActionLink("All Open Calls", "AllOpenCalls")</td>
<td>@Html.ActionLink("My Calls Today", "MyCallsToday")</td>
<td>@ViewBag.Title</td>
</tr>
</table>

,但是否有可能:

<table>
<tr>
@Model.MenuHtml
</tr>
</table>

I have a four viewmodels/views which display similar but different data.

Is it possible to have a property on the viewmodel which retuns ActionLinks (or the html for them ?)

e.g.
At the moment on each of my Views I have

<table>
<tr>
<td>@Html.ActionLink("My Open Calls", "MyOpenCalls")</td>
<td>@Html.ActionLink("All Open Calls", "AllOpenCalls")</td>
<td>@Html.ActionLink("My Calls Today", "MyCallsToday")</td>
<td>@ViewBag.Title</td>
</tr>
</table>

but would it be possible to have:

<table>
<tr>
@Model.MenuHtml
</tr>
</table>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

未央 2024-11-18 18:42:00

虽然可以在视图模型属性中存储 HTML,但我认为这不是一个好主意。如果您想重用某些代码,为什么不简单地将此表放入部分表中,然后包含该部分:

@Html.Partial("_Links")

另一种可能性是使用自定义 HTML 帮助程序来生成这些链接。

While it might be possible to store HTML in view models properties I don't think it would be a good idea. If you want to reuse some code why not simply put this table into a partial and then include the partial:

@Html.Partial("_Links")

Another possibility is to use a custom HTML helper that will generate those links.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文