我需要一个实现,我可以在我的ASP.NET控制器上获得无限的参数。如果我给你一个例子会更好:
让我们假设我将有以下网址:
example.com/tag/poo/bar/poobar example.com/tag/poo/bar/poobar/poo2/poo4 example.com/tag/poo/bar/poobar/poo89
正如你所看到的,它将在example.com/tag/之后得到无限数量的标签,并且斜杠在这里将是一个分隔符。
在控制器上我想这样做:
foreach(string item in paramaters) { //this is one of the url paramaters string poo = item; }
有没有什么已知的方法来实现这一点?如何获得控制器的值?使用字典< string,string>或List< string> ;?
NOTE :
The question is not well explained IMO but I tried my best to fit it.
in. Feel free to tweak it
解决方法
喜欢这个:
routes.MapRoute("Name","tag/{*tags}",new { controller = ...,action = ... }); ActionResult MyAction(string tags) { foreach(string tag in tags.Split("/")) { ... } }