HTTP_USER_AGENT / Node.js
HTTP_USER_AGENT / Node.js
我有一个使用 Node.js
的小网站,我需要为手机做一些调整。
为此,我想访问 HTTP_USER_AGENT
。我该怎么做?
我已经在网上阅读了一些内容,但目前还没有找到可行的解决方案。
我经历的其中一件事是 https://www.npmjs.com/package/useragent.
但是我一开始,就把这个添加到我的代码中:
var useragent = require('useragent');
我在查看网站时遇到此错误:
Application error
An error occurred in the application and your page could not be served. If you are the application owner, check your logs for details.
日志说:
Error: Cannot find module 'useragent'
我显然没有做正确的事或做错了事。
任何建议将不胜感激。
你有没有先安装你的包?
npm install --save useragent
此致
我有一个使用 Node.js
的小网站,我需要为手机做一些调整。
为此,我想访问 HTTP_USER_AGENT
。我该怎么做?
我已经在网上阅读了一些内容,但目前还没有找到可行的解决方案。 我经历的其中一件事是 https://www.npmjs.com/package/useragent.
但是我一开始,就把这个添加到我的代码中:
var useragent = require('useragent');
我在查看网站时遇到此错误:
Application error
An error occurred in the application and your page could not be served. If you are the application owner, check your logs for details.
日志说:
Error: Cannot find module 'useragent'
我显然没有做正确的事或做错了事。
任何建议将不胜感激。
你有没有先安装你的包?
npm install --save useragent
此致