0
我的測試網址:如何獲取asp.net mvc中的所有url參數?
localhost:61578/?type=promotion&foo=bar
我通常使用這種方式來獲得type
參數的值:
public IActionResult Index(string type)
{
// type = "promotion"
}
我的問題:如何檢測在url中的所有參數?我想阻止訪問帶有一些未知參數的頁面。
事情是這樣的:
public IActionResult Index(string type, string foo)
{
if (!string.IsNullOrEmpty(foo))
{
return BadRequest(); // page 404
}
}
的問題是:我不知道到底是什麼輸入用戶名。因此,可以這樣:
localhost:61578/?bar=baz&type=promotion
非常感謝!這有助於很多:) – Vayne