我使用 java servlet,我想从客户端接收大 json 数据。
我的客户代码是
url: "http://localhost:8080/JsonTest/setJson",
type: "POST",
dataType: 'json',
contentType: 'application/json',
data:{json:str},
我的服务器代码是
String json=request.getParameter("json");
但 json 变量是null
有谁能够帮我?