A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Async Functions inside node_helper.js
-
-
@magmirusr you will have to do promise.then in the non-async method to wait for the data
-
Hence I’ve utilized async capacities to get the information.
It’s turned out great however when I send it back to my main.js record it shows up as a Promise and I can’t handle the information.
Thanks.
Aaki working at Bizzeonine -
case "CASE_1": scrape("...").then((text) => { this.sendSocketNotification("text", text) }) break
Or
case "CASE_1" const AsyncJob = async () => { var text = await scrape("...") this.sendSocketNotification("text", text) } AsyncJob() break
-
@mmrize
Thank you very much!!! It’s working now. :) -