gpt4 book ai didi

javascript - 使用 Azure Function 响应 Node.JS 中的 JSON 对象

转载 作者:行者123 更新时间:2023-12-02 08:18:59 26 4
gpt4 key购买 nike

我目前正在后端开发中学习Azure Functions。问题在于,使用 Azure Functions 会阻止我的 JavaScript 代码在 Postman 中返回简单的 JSON 对象。我已阅读文档并尝试使用一些 JS 函数,例如 JSON.Stringify,但仍然没有运气。这是我的代码示例:

message = {
success: true,
status: 'pending',
message: "Some message etc..."
}
return message;

我对 Azure 几乎是新手,因此我们将不胜感激。谢谢!

最佳答案

试试这个...

// Construct response
const responseJSON = {
"name": "Some name",
"sport": "Some sport",
"message": "Some message",
"success": true
}

context.res = {
// status: 200, /* Defaults to 200 */
body: responseJSON,
contentType: 'application/json'
};

关于javascript - 使用 Azure Function 响应 Node.JS 中的 JSON 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70611930/

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