码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2018-10-25 11:17:44      阅读:333      评论:0      收藏:0      [点我收藏+]

标签:out   mobile   mob   nod   cas   oid   ase   请求   androi   

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和移动端

标签:out   mobile   mob   nod   cas   oid   ase   请求   androi   

原文地址:https://www.cnblogs.com/muamaker/p/9847821.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!