c# – MVC 4移动和平板电脑视图分离

前端之家收集整理的这篇文章主要介绍了c# – MVC 4移动和平板电脑视图分离前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试为平板电脑和移动设备制作单独的视图.在app_start我有这个代码
DisplayModeProvider.Instance.Modes.Insert(0,new
        DefaultDisplayMode("Tablet")
        {
            ContextCondition = (ctx =>
            ctx.Request.UserAgent.IndexOf("iPad",StringComparison.OrdinalIgnoreCase) >= 0 ||
            ctx.Request.UserAgent.IndexOf("Android",StringComparison.OrdinalIgnoreCase) >= 0)
        });

我创建了两个布局文件,一个用于移动设备,另一个用于平板电脑.但是当我从Android上的移动设备访问时存在冲突.它将我重定向到layout.tablet.我怎么能分开这两个设备?

解决方法

我在浏览器中使用用户代理切换器对此进行了测试,它运行正常.
DisplayModeProvider.Instance.Modes.Insert(0,StringComparison.OrdinalIgnoreCase) >= 0 && 
            ctx.Request.UserAgent.IndexOf("mobile",StringComparison.OrdinalIgnoreCase) < 1)
        });

        DisplayModeProvider.Instance.Modes.Insert(1,new DefaultDisplayMode("Mobile")
        {
            ContextCondition = (ctx =>
                ctx.GetOverriddenBrowser().IsMobileDevice)
        });
原文链接:https://www.f2er.com/csharp/243082.html

猜你在找的C#相关文章