ASP.Net 5中缺少FormCollections

Hen*_*o12 6 beta asp.net-mvc formcollection asp.net-core

FormCollections发生了什么变化System.Web.Mvc?在过去,我会使用类似的东西string value = data.GetValues(key).FirstOrDefault();,其中数据是一个formcollection.现在,当我尝试实现FormCollection时,它来自Microsoft.AspNet.Http.Internal.哪个不包含GetValues方法.

我目前正在使用MVC的beta 8.

Chr*_*ian 7

看起来像表单集合现在由接口表示,该接口IFormCollection继承自IReadableStringCollectionhttp请求中传递的表单集合中的键和值.它还可以用于通过索引来获取键的值:

var myValues = this.Request.Form[someKey];
Run Code Online (Sandbox Code Playgroud)