js 判斷用戶是手機端仍是電腦端訪問

經過userAgent 判斷,網頁能夠直接使用 navigation對象node

node端 能夠經過請求頭的 ctx.request.header['user-agent']android

 

const browser = {
    versions(u){
        return {  // 移動終端瀏覽器版本信息
            trident: u.indexOf('Trident') > -1,  // IE內核
            presto: u.indexOf('Presto') > -1,    // Opera內核
            webKit: u.indexOf('AppleWebKit') > -1,  // 蘋果、谷歌內核
            gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1,  // 火狐內核
            mobile: !!u.match(/AppleWebKit.*Mobile.*/)||!!u.match(/AppleWebKit/)&&u.indexOf('QIHU')&&u.indexOf('Chrome')<0,  // 是否爲移動終端
            ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/),  // iOS終端
            android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1,  // Android 終端或者 UC 瀏覽器
            iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1,  // 是否爲 iPhone 或者 QQHD 瀏覽器
            iPad: u.indexOf('iPad') > -1,   // 是否 iPad
            webApp: u.indexOf('Safari') == -1,   // 是否WEB應該程序,沒有頭部與底部。
            ua:u
        }
    }
}
module.exports = browser
相關文章
相關標籤/搜索