How to get query string variables in MVC 4's R

2019-03-25 17:16发布

I'm guffawed here working on my first MVC 4 project with the Web Api variety.

In MVC 3 I could get a query string parameter like such:

var unicornName = Request.Query["unicornName"];

But in MVC 4, it looks like the Request went from a HttpRequestBase to a HttpRequestMessage and the Query parameter is no more. So, hmm, okay, how do I get them now. I found a couple examples on the web but they are absurd.

This fellow recommends splitting the RequestUri's query string by "&" and finding your param and pair. And this example shows calling a GetQueryNameValuePairs method on the new request object which returns a list of key value pairs , then doing some linq to find your key and value. It can't really be this backwards to get something so simple. Please tell me I'm missing something!

Note: I can understand it's going the way of model binding and I should be bringing in query string parameters via the action's method params, but there are still times when query string variables need to be plucked (easily?) from the Request, such as in a Filter.

2条回答
一纸荒年 Trace。
2楼-- · 2019-03-25 17:27

I think this may be what you are looking for,

  var queryValues = Request.RequestUri.ParseQueryString();

https://stackoverflow.com/a/11729619/6819

查看更多
ら.Afraid
3楼-- · 2019-03-25 17:28

If the linq is really that troublesome, just wrap the result of your GetQueryNameValuePairs() in a dictionary:

var requestQuery = 
    list.ToDictionary((keyItem) => keyItem.Key, (valueItem) => valueItem.Value);

You can then get your string parameter just like you always have:

var unicornName = requestQuery["unicornName"];
查看更多
登录 后发表回答