Folks, DynamoDB call returns a JSON Object, which I would like to parse, and grab the password hash field
jsonString = JSON.stringify(data)
console.log(jsonString)
output:
{"Count":1,"Items":[{"token":{"S":"token"},"uid":{"S":"33c02130-66b5-11e3-bdb0-7d9889f293b5"},"password":{"S":"$2a$10$ervzJ.DWjHOXRtJSugTaWuquI2OvPLyipa4YXecc/2KdQnmhrHxr6"},"username":{"S":"foo"},"plate":{"S":"dinner"},"name":{"S":"Test Name"},"server":{"S":"bar"}}]}
How would i parse this string, and retrieve the 'password' field? The following code does not work:
console.log(jsonString.password)
console.log(jsonString.uid)
The following returns undefined:
console.log(data.password);
Thanks!