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

时间:2018-09-08 10:57:59

标签: javascript json node.js express

我使用的是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}`

那可以吗?

感谢阅读。

1 个答案:

答案 0 :(得分:1)

是的,有可能!

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

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

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