gpt4 book ai didi

node.js - Azure函数: NodeJS - HTTP Response Renders as XML Rather than HTTP Response

转载 作者:数据小太阳 更新时间:2023-10-29 01:56:24 25 4
gpt4 key购买 nike

我有一个用 NodeJS 编写的 Azure 函数,我正在尝试使用 302 引发 HTTP 重定向。该文档对于响应中的有效条目非常稀疏。结果,我创建了一个对象,其中我认为应该是生成重定向的正确条目,但我得到的只是 XML 响应。甚至像状态代码这样的项目也会显示在 XML 中,而不是更改实际的状态代码。

我做错了什么?

我的代码:

module.exports = function(context, req){
var url = "https://www.google.com";
context.res = {
status: 302,
headers: {
Location: url
}
}
context.done();
}

这是我在浏览器中收到的响应:

HTTP/1.1 200 OK
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 1164
Content-Type: application/xml; charset=utf-8
Expires: -1
Server: Microsoft-IIS/8.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Wed, 18 Jan 2017 00:54:20 GMT
Connection: close

<ArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"><KeyValueOfstringanyType><Key>status</Key><Value xmlns:d3p1="http://www.w3.org/2001/XMLSchema" i:type="d3p1:int">302</Value></KeyValueOfstringanyType><KeyValueOfstringanyType><Key>headers</Key><Value i:type="ArrayOfKeyValueOfstringanyType"><KeyValueOfstringanyType><Key>Location</Key><Value xmlns:d5p1="http://www.w3.org/2001/XMLSchema" i:type="d5p1:string">https://www.google.com</Value></KeyValueOfstringanyType></Value></KeyValueOfstringanyType></ArrayOfKeyValueOfstringanyType>

最佳答案

问题是您没有在响应中定义“正文”。可以将其设置为 null,但必须将其设置为 Azure 函数才能正确解释它。

例如将您的代码更新为:

module.exports = function(context, req){
var url = "https://www.google.com";
context.res = {
status: 302,
headers: {
Location: url
},
body : {}
}
context.done();
}

然后您将得到所需的响应:

HTTP/1.1 302 Found
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 0
Expires: -1
Location: https://www.google.com
Server: Microsoft-IIS/8.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Wed, 18 Jan 2017 01:10:13 GMT
Connection: close
<小时/>

编辑于 2017 年 2 月 16 日 - 对正文使用“null”目前会在 Azure 上引发错误。因此,答案已更新为使用 {}。

关于node.js - Azure函数: NodeJS - HTTP Response Renders as XML Rather than HTTP Response,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41709910/

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