node-express根据请求,判断PC和移动端

Posted muamaker

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node-express根据请求,判断PC和移动端相关的知识,希望对你有一定的参考价值。

function getMachine(req) {
    var deviceAgent = req.headers["user-agent"].toLowerCase();
    var agentID = deviceAgent.match(/(iphone|ipod|ipad|android)/);
    if (agentID) {
        return "Mobile";
    } else {
        return "PC";
    }
}

 

router.get("/",function (req,res,next) {
    var machine = getMachine(req);
    res.send(machine);
})

  

 

以上是关于node-express根据请求,判断PC和移动端的主要内容,如果未能解决你的问题,请参考以下文章

nginx增加如下配置,根据ua和cookie判断当前是移动端还是pc端访问

php 中判断请求来自 移动手机端,还是来自电脑 PC 端:

vue 判断移动端还是pc端渲染不同的页面

js判断当前浏览器是pc端还是移动端

js判断用户的浏览器设备是移动端还是pc端

js判断到移动端PC端