在将nodejs项目升级到打字稿时,如何替换``需要''函数?

发布于 2025-01-22 08:55:42 字数 520 浏览 0 评论 0原文

我正在尝试将现有的Nodejs项目从JavaScript转换为打字稿,但我不知道如何处理需要表达方式如下:

const indexRouter = require('../routes/index');

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

编辑:这是index.ts.ts迪尔:

import express, {Request, Response, NextFunction} from 'express';
const router = express.Router();

/* GET home page. */
router.get('/', function(req: Request, res: Response, next: NextFunction) {
  res.render('index', { title: 'Express' });
});

export default router;

I am trying to modify an existing NodeJS project from JavaScript to TypeScript but I don't know how to deal with require expressions like below:

const indexRouter = require('../routes/index');

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

EDIT: This is the index.ts dile:

import express, {Request, Response, NextFunction} from 'express';
const router = express.Router();

/* GET home page. */
router.get('/', function(req: Request, res: Response, next: NextFunction) {
  res.render('index', { title: 'Express' });
});

export default router;

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

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

发布评论

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

评论(1

紫瑟鸿黎 2025-01-29 08:55:42

您不必更改这些行。 TypeScript通过依次配置了解Commonjs模块。但是,由于您想替换它们,我认为您想使用ES6模块。

它是

import indexRouter from '../routes/index';

import config from './config';

You don't have to change that lines. TypeScript understands CommonJS modules with the according configuration. But since you want to replace them, I assume you want to use ES6 modules.

It's

import indexRouter from '../routes/index';

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