Node-red 中的 http 响应

http response in Node-red

在 Node-red 中,执行 http 请求(Google Maps Distance Matrix API)后,http 响应将显示 HTML source directly.What happended to the process ?请多多帮助me.Thanks。

如果函数 "setShopInformation" 与 http 请求 "callGoogleMapsAPI" 连接,则两个 http 响应 "showDo" 将显示 HTML 来源。

连接后的showDo页面"callGoogleMapsAPI"

这可能是因为 headers 正在对 googlemaps http 请求 节点的调用中设置,需要在 showDo 之前重置http 输出 节点。

尝试将其添加到 setDistance 函数中

...
delete msg.headers;
...