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端访问