将操作重定向到移动视图
public ActionResult Home()
{
return View();
}
这就是我在 HomeController 中当前站点的内容。如何检测该操作是否是从移动设备调用的,如果是,则重定向到 MobileHome.aspx 而不是 Home.aspx。
我不需要知道设备的详细信息,因为我正在 JQuery Mobile 中实现视图,它应该根据呈现的视图正确调整自身。
public ActionResult Home()
{
return View();
}
This is what I have for my current site within the HomeController. How can I detect if the action is called from a mobile device, and if it is, re-direct to MobileHome.aspx instead of Home.aspx.
I don't need to know the details of the device, because I am implementing the view in JQuery Mobile, which should adjust itself correctly depending on the view it's rendered in.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能会发现以下博客文章很有用。
You may find the following blog post useful.
以下是对 Controller 类的重写。我还没有测试过这个,所以考虑它伪代码:
您可以使用 Request.Browser.IsMobileDevice 来确定设备是否是移动的(显然),然后检查结果是否是一个视图。但是,如果您将实际视图传递给操作结果,则仅更改视图名称是不够的。
The following is an override on the Controller class. I have not tested this, so consider it pseudo code:
You can use the Request.Browser.IsMobileDevice to determine if the device is mobile (obviously), and then check to see if the result it a view. However, changing the view name is not sufficient if you pass an actual view to the result of your action.