我有一个带有多个锚标签的视图。有没有办法返回带有模型对象的视图并转到视图中的特定锚标记?
例如,我的 View 有这样的锚点:
<a name="Section1"></a>
...
<a name="Section2"></a>
我知道我可以使用以下方法击中这些锚点:
return Redirect(Url.RouteUrl(new { controller = "myController", action = "myAction" }) + "#Section1");
但我不认为我可以使用重定向,因为我需要发送一个模型:
return View("myAction", model); // how to go to anchor?