Node-red中的http响应

时间:2016-04-13 16:35:55

标签: http google-maps-api-3 ibm-cloud node-red

在Node-red中,在执行http请求(Google Maps Distance Matrix API)后,http响应将直接显示HTML源代码。该过程会出现什么问题?请帮助我。谢谢。

enter image description here

如果功能" setShopInformation"连接http quest" callGoogleMapsAPI"那么http响应" showDo"将显示HTML源。

enter image description here

连接" callGoogleMapsAPI"

后的showDo页面

1 个答案:

答案 0 :(得分:0)

这可能是因为在调用googlemaps http请求节点时设置了标头,需要在showDo http out 节点之前重置。

尝试将此添加到setDistance函数

...
delete msg.headers;
...