在Express JS上调用静态文件不起作用

时间:2020-05-03 01:14:46

标签: node.js express

我在目录 / api 下有一个express js应用,默认根目录在 index.js 文件中。

我在名为 routes

的目录下还有一个名为 data.js 的文件。

data.js 包含路由'/ api / data / sickers',并且运行正常。

data.js 使用位于 connection

文件中名为 Modules 的目录中的方法

data.js 内部,我使用以下方法调用该方法:

var con = require('../Modules/connection.js');

我尝试使用app.use(path.join(_dirname,'Modules'));在索引中,但不起作用。

目录的结构如下:

-api

----index.js                  (default route '/api')

----routes
           -- data.js         (route : '/api/data/sickers' / method called to work here)
----Modules
           -- connection.js   (the method is here)

0 个答案:

没有答案