mobile-check.js 254 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 /** * 手机访问检测 */ 'use strict'; module.exports = () => { return (req, res, next) => { if (req.isMobile) { return res.redirect(req.mobileUrl || `//m.yohobuy.com${req.url}`); } return next(); }; };