将数据传递给View Component和View时重叠

时间:2017-06-18 08:42:53

标签: c# asp.net-core-mvc

在ASP.NET MVC CORE项目中,

我在布局页面中有View Component并将字符串类型数据传递给它,

我知道我将类型为integer的数据传递给它,

运行该错误时出现的问题:

InvalidOperationException: The model item passed into the ViewDataDictionary is of type 'System.Int', but this ViewDataDictionary instance requires a model item of type 'System.String'.

1 个答案:

答案 0 :(得分:0)

问题因为我将我的模型作为字符串传递给视图组件, 并且视图将其视为视图名称而非模型 我把我的字符串放在课堂上并将其作为模型课传递,它与我合作 谢谢任何人试图帮助我