Skip to content
Advertisement

.find() returns undefined using JSON data, using node.js

I’m creating a server using node and want to output JSON data, when a specific ID is clicked.

I’ve set up a dynamic URL which will pull the data from the clicked video using params and then compare it with the one from the JSON data, using .find()

When I log out the “req.params.id” I get the clicked ID. However, when I log out the .find() function it just gives me an undefined.

JavaScript
JavaScript

Advertisement

Answer

You need to parse json since fs.readFileSync return string

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement