c# – 你能让Asp.net MVC View连线编译时安全吗?

前端之家收集整理的这篇文章主要介绍了c# – 你能让Asp.net MVC View连线编译时安全吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
获取控制器的标准return语句:
return View("Index");

有没有办法让这个东西编译时安全?使用static reflection或其他一些技巧?

解决方法

是;你在寻找 this.

T4MVC is a T4 template for ASP.NET MVC apps that creates strongly typed helpers that eliminate the use of literal strings when referring to controllers,actions and views. It helps make your MVC code much more maintainable,and gives you intellisense where you normally would not have any.

原文链接:https://www.f2er.com/csharp/91182.html

猜你在找的C#相关文章