我是NodeJS的新手,很抱歉一个简单的问题。我有一个不太大的程序,但想让我的主web.js
文件更清晰一些,并创建几个单独的文件(例如user_login.js
,admin.js
等),然后简单地将这些文件的内容粘贴web.js
到.
在 Internet 上,每个人都建议使用require()
,但这意味着编写一个模块 - 一段自洽的代码。但我需要简单地将一个文件的文本包含到另一个文件中。说,我会
管理员.js:
app.get('/admin', function (request, response)
{
response.send("hey, you are an admin!");
});
用户.js:
app.get('/', function (request, response)
{
response.send("hi, how are you?");
}
web.js:
var express = require('express');
var app = express();
include('admin.js');
include('user.js');