Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以控制器的标准返回语句为例:
return View("Index");
有没有办法让这个东西编译时安全?使用静态反射或其他技巧?
是的; 你在找这个。
T4MVC 是用于 ASP.NET MVC 应用程序的 T4 模板,它创建强类型帮助程序,在引用控制器、操作和视图时消除了文字字符串的使用。它有助于使您的 MVC 代码更易于维护,并为您提供通常没有的智能感知。