我正在尝试使用Loopback为现有数据库创建api。当我试图'发现'模型时,我收到了这个错误:
Message: Cannot find module 'negotiator'
Request: /workspace/api/DataSourceDefinitions/server.tweetvtds/testConnection
Staus: 500
Error: Cannot find module 'negotiator'
at Function.Module._resolveFilename (module.js:336:15)
at Function.Module._load (module.js:278:25)
at Module.require (module.js:365:17)
at require (module.js:384:17)
at Object.<anonymous> (~/lb/node_modules/loopback/node_modules/express/node_modules/accepts/index.js:1:80)
at Module._compile (module.js:460:26)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Module.require (module.js:365:17)
我在其他地方读到我应该尝试:
# uninstall the existing version
npm uninstall -g generator-loopback
# install it again
npm install -g generator-loopback
但这没有帮助。这个错误意味着什么,我该如何解决?
答案 0 :(得分:0)
事实证明,项目的初始构建并未完全完成。
在初始构建期间,Loopback打印了以下内容:
I'm all done. Running npm install for you to install the required
dependencies. If this fails, try running the command yourself.
create .editorconfig
create .jshintignore
create .jshintrc
create README.md
create server/boot/authentication.js
create server/boot/explorer.js
create server/boot/rest-api.js
create server/boot/root.js
create server/middleware.json
create server/server.js
create .gitignore
create client/README.md
未能完成此步骤;但是,运行'npm install&#39;由于某种原因,我自己没有解决问题。所以,我刚刚建立了一个新的环回项目,现在一切正常。