我想从客户端向服务器发送转换为JSON的java.util.HashMap
。
我正在使用JSweet将Java转换为JavaScript以供客户端使用。
我查看了XMLHttpRequest
并尝试使用JSON.stringify(new HashMap<>())
准备转移地图,但这导致了
TypeError:循环对象值
在客户端。
这些是我的相关依赖项(使用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"
答案 0 :(得分:4)
我必须先将java.util.Map
转换为jsweet.lang.Object
,然后再使用stringify
将其编码为JSON。
以下是使用JSweet将java.util.Map
作为JSON发送到服务器的代码:
void postJson(Map<String, String> map, String url) {
XMLHttpRequest request = new XMLHttpRequest();
// Post asynchronously
request.open("POST", url, true);
request.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
// Encode the data as JSON before sending
String mapAsJson = JSON.stringify(toJsObject(map));
request.send(mapAsJson);
}
jsweet.lang.Object toJsObject(Map<String, String> map) {
jsweet.lang.Object jsObject = new jsweet.lang.Object();
// Put the keys and values from the map into the object
for (Entry<String, String> keyVal : map.entrySet()) {
jsObject.$set(keyVal.getKey(), keyVal.getValue());
}
return jsObject;
}
像这样使用:
Map<String, String> message = new HashMap<>();
message.put("content", "client says hi");
postJson(message, "http://myServer:8080/newMessage");