1

我有一个名为 Country 的字符串属性,可通过所有视图模型查看。我想将此属性添加到 Url.Action 的 RouteValueDictionary 所以现在我必须将每个 Url.Action 更改为

Url.Action("action","controller", new RouteValueDictionary{new {Country=Country}))。

我正在寻找干净的解决方案,在运行时将其添加到 RouteValueDictionary 而不是到处更改 Url.Action

请指教。

谢谢

4

1 回答 1

0

尝试一下(仅使用匿名对象):

Url.Action("action","controller",  new {Country=Country} ) 
于 2013-01-14T17:14:59.247 回答