gpt4 book ai didi

node.js - 如何让${port}在express服务器上工作

转载 作者:太空宇宙 更新时间:2023-11-03 22:44:55 24 4
gpt4 key购买 nike

我在 app.js 中使用了这段代码来在控制台中显示端口,但不起作用下面只是整个代码的一部分

const port = 8080;
app.listen(port, () => {
console.log("hi its listening: ${port}!");
});

这是控制台的输出

hi its listening: ${port}!




const express=require('express');
const app=express();
const morgan=require('morgan');

const postRoutes=require("./routes/post");

app.use(morgan("dev"));

app.use('/',postRoutes);

const port = 8080;//process.env.PORT || 8080;
app.listen(port, () => {
console.log("hi its listening: ${port}!");
});

它应该显示:

hi its listening: 8080

最佳答案

您可以使用template strings (带反引号 - ``)或字符串连接:

// Template Strings example ...
console.log(`hi its listening: ${port}!`);

// String concatenation example ...
console.log('hi its listening: ' + port + '!');

关于node.js - 如何让${port}在express服务器上工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57220850/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com