asp.net core 2.1找不到StringValues

时间:2018-06-29 05:59:59

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

enter image description here 一个简单的asp.net核心2.1 mvc项目,我想从FormData中获取一些值,所以我使用:

var obj = new JObject();    
foreach (var item in Request.Form)
            {
                obj[item.Key] = item.Value[0];
            }

这些代码工作正常,我可以得到item.Key和item.Value。 添加快速监视也可以正常工作: enter image description here

但是,调试时,Visual Studio显示提示:

error cs0246: cannot find StringValues

我在google上添加了nuget或添加了引用“ Microsoft.Extensions.Primitives”,但提示没有消失。

0 个答案:

没有答案