NodeJS:服务器端浏览器检测
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NodeJS:服务器端浏览器检测相关的知识,希望对你有一定的参考价值。
Browser detection before sending any resources to the client.
var ua = request.headers['user-agent'], $ = {}; if (/mobile/i.test(ua)) $.Mobile = true; if (/like Mac OS X/.test(ua)) { $.iPhone = /iPhone/.test(ua); $.iPad = /iPad/.test(ua); } $.Android = /Android ([0-9.]+)[);]/.exec(ua)[1]; if (/webOS//.test(ua)) $.webOS = /webOS/([0-9.]+)[);]/.exec(ua)[1]; if (/(Intel|PPC) Mac OS X/.test(ua)) $.Mac = /(Intel|PPC) Mac OS X ?([0-9._]*)[);]/.exec(ua)[2].replace(/_/g, '.') || true; if (/Windows NT/.test(ua)) $.Windows = /Windows NT ([0-9._]+)[);]/.exec(ua)[1];
以上是关于NodeJS:服务器端浏览器检测的主要内容,如果未能解决你的问题,请参考以下文章