例如:我可以在count=2
中获取变量结果中的值。但是如何使用View显示这些值。
我收到如下错误:
The model item passed into the dictionary is of type
'System.Collections.Generic.List`1[<>f__AnonymousType3`2[System.Int32,System.String]]', but this dictionary requires a model item of type 'System.Collections.Generic.IList`1[KShoppingCart.Models.Category]'.
答案 0 :(得分:1)
答案 1 :(得分:0)
有两种选择:
@model dynamic
第二种选择是通常和最好的方法。声明的类称为“视图模型”,您应该始终为所有视图创建视图模型。