Skip to content
Advertisement

Trying to iterate through an object’s values and insert into new object (JS)

I am trying to create a series of new objects using the values from an existing object to push to my database.

Here is the existing object:

JavaScript

Basically I have a function that inserts and returns the id of the recipe into one table, then inserts and returns/or finds the ids of the relevant ingredients and the final part (with which I am struggling) is to combine the returned recipe_id, ingredient_id and the correct measure and quantity (as written in the object above).

Here is where I have gotten to:

JavaScript

The desired output would be:

JavaScript

Advertisement

Answer

The problem seems to be that the function “getIngredients” returns only the IDs. Once you have fetched them, you have no way of knowing which ID is for which ingredient. One way to change that is to make the method return an array of both the ID and the ingredient name. Then you could match them like this:

JavaScript

Since you haven’t posted the “getIngredients” function it is hard to say exactly how to adapt it to return the name as well.

Advertisement