gpt4 book ai didi

xml - Azure Functions 可以返回 XML 吗?

转载 作者:数据小太阳 更新时间:2023-10-29 02:00:43 26 4
gpt4 key购买 nike

寻找从 Azure 函数返回 XML 的 Node.js 示例。我下面的代码返回 xml 字符串,但响应 Content-Type 设置为 text/plain; charset=utf-8 而不是 text/xml;字符集=utf-8

index.js

module.exports = function(context, req) {
var xml = '<?xml version="1.0" encoding="UTF-8"?><Response><Say>Azure functions!</Say></Response>';

context.res = {
contentType: 'text/xml',
body: xml
};

context.done();
};

这是绑定(bind)。

function.json

{
"bindings": [
{
"authLevel": "function",
"type": "httpTrigger",
"direction": "in",
"name": "req"
},
{
"type": "http",
"direction": "out",
"name": "res"
}
],
"disabled": false
}

最佳答案

马克,

绝对是!您已经很接近了,但您可以查看如何在响应 here 上设置内容类型的示例。 .

下一个版本还进行了修复,可以实现正确的内容协商,从而在许多情况下无需显式设置该内容。

关于xml - Azure Functions 可以返回 XML 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40538324/

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