我有一种情况,我想将自定义EditorTemplate
与 ViewModel 一起使用。所以我有我的 ViewModel ......
class Aspect {
}
class AspectViewModel {
}
然后是我的 EditorTemplate
- 意见
- 共享
- 编辑器模板
- 方面.cshtml
- 编辑器模板
- 共享
方面.cshtml
@model AspectViewModel
// 其他html
然后在另一个视图中AspectViewModel
,我调用@Html.EditorFor(model => model)
了 ,但它不起作用。仅当我使用硬编码字符串时才有效@Html.EditorForModel("Aspect")
。
知道为什么不调用它吗?