My lambda function is called with by an IoT rule (MQTT message in JSON). I am simply trying to log the values, and the top level dot fields work fine, but nested objects in the JSON are seen as "undefined". I tried to JSON.stringify these with no success. Any ideas?
'use strict';
console.log('Loading function');
exports.handler = (event, context, callback) => {
console.log('Received event:', JSON.stringify(event, null, 2)); // Complete message
console.log('Received event.ApiVersion:',event.ApiVersion);
console.log('Received event.CollectionID:',event.CollectionId);
console.log('Received event.TagData.Time:',event.TagData.Time); //undefined
var TimeObj = {};
TimeObj = event.TagData.Time;
console.log('Received event TimeObj:',TimeObj); //undefined
};
Here are the cloud watch logs / results:
Loading function
Received event:
{
"FormatId": "TagValues",
"ApiVersion": 1,
"CollectionId": 2,
"TagData": [
{
"Time": "2017-09-02T11:06:35.917000+02:00",
"Values": {
"var1": 16777216,
"var2": 7534
}
}
]
}
Received event.ApiVersion: 1
Received event.CollectionID: 2
Received event.TagData.Time: undefined
Received event TimeObj: undefined
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…