1
我有用於將JSON對象發送到後端(java)的UI。 JSON對象有時它null
當JSON太大當Json在播放框架中太大時Json會變爲空
@Transactional
public static Result save() {
try {
JsonNode json = request().body().asJson();
if (json == null) {
return ok(SEND_JSON_OBJECT);
}
} catch (Exception e) {}
}
我得到null
當JSON大
沒有任何限制最大尺寸? – Niamath