fix[json]: json node转字符串不应该调用asText

This commit is contained in:
godotg
2022-09-12 08:56:18 +08:00
parent a2db95f76c
commit 524e759d41
@@ -210,7 +210,7 @@ public abstract class JsonUtils {
while (iterator.hasNext()) {
var node = iterator.next();
var field = node.getKey();
var value = node.getValue().asText();
var value = node.getValue().toString();
jsonMap.put(field, value);
}
}