在模型中渲染 Url.Action
我怎样才能在模型或控制器中做这样的事情?
<%= Url.Action("Home"); %>
how can i do such thing in model or controller?
<%= Url.Action("Home"); %>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Url 属性在控制器中:
就模型而言,您应该避免在那里使用此类方法。模型被传递到视图,视图可以访问可以完成这项工作的辅助方法。
You could use the Url property in the controller:
As far as the model is concerned you should avoid using such methods there. The model is passed to the view and the view has access to helper methods which can do the job.