对于控制器Foo
、Bar
和Baz
,我的文件夹结构如下所示:
Views
Foo
Index.csthml
Bar
Index.csthml
Baz
Index.csthml
_Rarity.cshtml
真的必须这样吗?确定要编辑的正确文件有点痛苦,因为它们中的大多数都被称为Index.cshtml
. 理想情况下,我想要更像这样的东西:
Views
Foo.csthml
Bar.csthml
Baz.csthml
Baz
_Rarity.cshtml
我知道我可以将完全限定的路径传递给View()
Controller 类的方法;即在FooController
'sIndex()
方法内部,我可以调用this.View("~/Views/Foo.cshtml")
. 这是我能得到的最好的吗?