gpt4 book ai didi

javascript - 返回 json 时使用模板文字? Node.js

转载 作者:行者123 更新时间:2023-12-03 01:10:07 25 4
gpt4 key购买 nike

我正在使用express并且我想返回一些JSON,模板文字可以工作吗?我目前拥有的:

resp.status(201).json({
message: "Customer added to database",
url: "http://localhost:5000/Customer/" + doc._id
}
});

我想改成这样:

url: `http://localhost:5000/Customer/${doc._id}`

这是允许的吗?

感谢您的阅读。

最佳答案

是的,这是可能的!

我推荐这个。可读性很好。

const message = "Customer added to database";
const url = `http://localhost:5000/Customer/${doc._id}`

res.status(201).json({
message,
url
});

关于javascript - 返回 json 时使用模板文字? Node.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52234624/

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