如果我有观点继承自:
System.Web.Mvc.ViewPage<Foo>
Foo有一个类型字符串的属性栏
而且视图想要渲染强类型的部分视图,它继承自:
System.Web.Mvc.ViewUserControl<string>
喜欢这个:
Html.RenderPartial("_Bar",Model.Bar);%>
那为什么会这样呢?
The model item passed into the dictionary is of type ‘Foo’
but this dictionary requires a model item of type ‘System.String’.
当bar未初始化时?
更具体:为什么它通过Foo,它应该通过null?