根据:
<ul>
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("Device Management", "Index", "DeviceManagement")</li>
</ul>
如果我第一次点击设备管理,则位置为:(使用ngRoute到&#34; / device&#34;成功!)
http://localhost:13060/DeviceManagement#/device
如果我再次单击“设备管理”,则位置为:(使用ngRoute至&#34; / device&#34;无法正常工作!)
http://localhost:13060/DeviceManagement#
为什么&#34; / device&#34;当我单击上面的@ Html.ActionLink两次时会消失吗?
@ Html.ActionLink发生了什么?
答案 0 :(得分:0)
在这种情况下,它应该在客户端以角度路由进行路由。应该修改动作链接:
<a href="/#/home">Home</a>
<a href="/#/devicemanagement">Device Management</a>