0

是否可以将字符串转换为 routeValues?

每个例子:

return RedirectToAction("Index", "Home", new { id = 1});

return RedirectToAction("Index", "Home", "id = 1");

我需要它是因为我想将 routeValues 保存在数据库中。

我已经读过这个:convert string into (object) routeValues C#,但是这个人不知道这是否是更受支持的方式。

4

1 回答 1

1

RedirectToAction还需要 a RouteValueDictionarywhich 可能适用于您的情况。你必须以不同的方式构建它。

var routeVals = new RouteValueDictionary(){"id", "1"};
return RedirectToAction("Index", "Home", routeVals);
于 2015-07-07T21:37:46.507 回答