0
我正在使用Node-RED並希望在Bluemix VCAP_SERVICES
中進行解析,但是出現錯誤。我的代碼是:爲什麼Node-RED無法解析Bluemix中的VCAP_SERVICES環境?
var services = context.global.VCAP_SERVICES;
var env_cloudint = services['CloudIntegration'][0].credentials;
,但我得到這個錯誤:
TypeError: Cannot read property 'CloudIntegration' of undefined
我有CloudIntegration我VCAP_SERVICES
。在我的代碼中是否需要額外的東西來利用VCAP_SERVICES
?
你的錯誤表明'服務'本身是未定義的,並不是'services'數組中的'CloudIntegration'是未定義的 –