Skip to content
Advertisement

await js async function (promise) inside a go function

I am looking to integrate indexdb in a wasm based app. How do you “await” in a go function a promise from a js function. Here is the example

JavaScript

and in go

JavaScript

Async callbacks are fine too.

LE: one bad solution would be to create a go routine with an infinite loop waiting until a DOM variable exists like global.solution+ID to be set. But I believe this is a bad solution

Advertisement

Answer

You can use the then method from the Promise object to wait for the result, something like this:

JavaScript

Notice that we are using a channel to actually wait in the Go code. We need to do that because the Go program must still be running while receiving the callback from Javascript.

The index.html file:

JavaScript
Advertisement