Converting JSON result from Toolbox’s Javascript into list of things
Hey guys, i’ve been working on my simple compound interest rate calculator web app.
So i want to show the table of compounding rate every year as the user input it. Practically it’s supposed to look like this:
Now the question is how do i store this list so i can make present a table and make a chart out of it?
I’ve been trying to find the answer for 4 days now. There are a lot of question and answer about converting list of things to JSON but i can’t the other way around.
The only “bubble native” way to do something like this would be to run your javascript function using a service like webtask.io, AWS lambda or pipedream and get the results back of your function via a api call. You can then use the results as a list and populate your data.
The more difficult way which I don’t recommend at all is to make every key/value in your objects a array and using the the JS to Bubble tool make multiple states and then use that data to populate your RG…but once again I do not advise to take this path.
Hi, i checked the pipedream one. it looks promising. do you mind to elaborate how to connect bubble to pipedream? in my understanding it would be by using webhook right? but i’m not sure what is the next step?