I'd like to send a java.util.HashMap
converted to JSON from the client to the server.
I'm using JSweet to transpile Java to JavaScript for the client side.
I had a look at XMLHttpRequest
and tried to prepare the map for transfer using JSON.stringify(new HashMap<>())
but this resulted in a
TypeError: cyclic object value
on the client side.
These are my relevant dependencies (using Gradle):
// Java to JavaScript transpilation
compile "org.jsweet:jsweet-transpiler:1.2.0-SNAPSHOT"
compile "org.jsweet.candies:jsweet-core:1.1.1"
// Allows us to use Java features like Optional or Collections in client code
compile "org.jsweet.candies:j4ts:0.2.0-SNAPSHOT"
I had to convert the
java.util.Map
to ajsweet.lang.Object
before encoding it as JSON usingstringify
.Here's the code to send a
java.util.Map
as JSON to the server using JSweet:Use it like this: