【问题标题】:Cannot find module while adding cloud code to parse server example project添加云代码以解析服务器示例项目时找不到模块
【发布时间】:2016-11-10 15:58:18
【问题描述】:

我从这里创建了一个项目https://github.com/ParsePlatform/parse-server-example

我已经按照这里的指示http://blog.parse.com/learn/parse-server-video-series-april-2016/

并在本地安装了 node.js 和解析服务器,我运行了解析服务器,它运行良好。

接下来,我将自己的云代码添加到云目录,也替换了我的 main.js 文件。现在,当我运行服务器 (npm start) 时,我收到此错误

 C:\Project>npm start

> parse-server-example@1.4.0 start C:\Project
> node index.js

1
module.js:442
    throw err;
    ^

Error: Cannot find module 'cloud/afterSaveEvent.js'
    at Function.Module._resolveFilename (module.js:440:15)
    at Function.Module._load (module.js:388:25)
    at Module.require (module.js:468:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (C:\Project\cloud\main.js:1:63)
    at Module._compile (module.js:541:32)
    at Object.Module._extensions..js (module.js:550:10)
    at Module.load (module.js:458:32)
    at tryModuleLoad (module.js:417:12)
    at Function.Module._load (module.js:409:3)

npm ERR! Windows_NT 6.3.9600
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\
node_modules\\npm\\bin\\npm-cli.js" "start"
npm ERR! node v6.3.0
npm ERR! npm  v3.10.3
npm ERR! code ELIFECYCLE
npm ERR! parse-server-example@1.4.0 start: `node index.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the parse-server-example@1.4.0 start script 'node index.js'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the parse-server-example
package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node index.js
npm ERR! You can get information on how to open an issue for this attIn with:
npm ERR!     npm bugs parse-server-example
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls parse-server-example
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     C:\Project\npm-debug.log

C:\Project>

这是我的云代码 main.js 文件的外观

require('/cloud/afterSaveEvent.js');
Parse.Cloud.define('hello', function(reqest, response) {
  response.success('Hi');
});

我也尝试过重新安装 npm,但遇到了同样的错误。

请帮我解决这个问题。

【问题讨论】:

    标签: node.js parse-cloud-code npm-install parse-server npm-start


    【解决方案1】:

    我认为你不需要下一行。

    require('/cloud/afterSaveEvent.js');
    

    删除它并且只有下面的代码起始行#1,它应该可以解决问题:

    Parse.Cloud.define('hello', function(reqest, response) {
      response.success('Hi');
    });
    

    【讨论】:

    • 感谢您回答我的问题。
    【解决方案2】:

    像这样需要afterSaveEventrequire('./afterSaveEvent');

    【讨论】:

    • 感谢 Ebrahim,我以前试过这个,但我不知道为什么这次成功了。现在我收到如下不同的错误, throw new Error('Most middleware (like ' + name + ') 不再与 Express 捆绑在一起,必须单独安装。请参阅github.com/sen chalabs/connect#middleware.');
    • @JigneshPatel 请为此打开一个新问题。
    • 我已经发布了问题并自己找到了答案,您可以在这里看到stackoverflow.com/questions/38263205/…
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-08-22
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-02-20
    相关资源
    最近更新 更多