NODE JS - 你能告诉我目录顺序做错了什么吗?

发布于 2025-01-11 07:39:06 字数 276 浏览 0 评论 0原文

我对 Node JS 非常陌生,之前我能够运行这个 js 文件。现在,我不能,我也不知道为什么。它说它在 config 文件夹下看不到 app.js 文件,但正如你所看到的,config 下有 app.js,我还在 server.js 中给出了指示。请帮帮我。

输入图片此处描述

I am super new to Node JS and I was able to run this js file before. Right now, I can't and I don't know why. It says that it doesn't see app.js file under the config folder but as you see there is app.js under the config and I also gave direction in server.js. Please help me out.

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

对不⑦ 2025-01-18 07:39:06

如果您要导入 app.js 文件,最好像这样在末尾添加 .js

var app = require('../server/config/app.js')

if you are importing app.js file its a good idea to add .js at the end just like this

var app = require('../server/config/app.js')
最佳男配角 2025-01-18 07:39:06

当您的 server.js 文件与 server 目录位于同一级别时,您正在使用 ..。使用一个 . 就可以了

const app = require('./server/config/app');

You are using .. when your server.js file is at the same level as the server directory. Use one . and it should work

const app = require('./server/config/app');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文