我有一个小网站与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'
我显然不能做正确的事情或做错事。
任何建议都将不胜感激。
答案 0 :(得分:2)
您是否先安装了包裹?
npm install --save useragent
此致