我正在开发网络应用程序。
我正在将 json 字符串从一页发送到另一页。我已经使用 jquery 来发送帖子数据。在目标页面中,我想检索相同的数据。但我在那里得到了null
价值。
我将 json 字符串发布到页面的页面是:
$(document).ready(function () {
$.post("./ProfileUser.jsp",{jsonData:jsonstr});
$(location).attr('href',"./ProfileUser.jsp");
});
并且在页面中ProfileUser.jsp
<%
String jsonData = request.getParameter("jsonData");
String mobile;
if(jsonData == null) mobile = "something went wrong";
else {
JSONObject j =new JSONObject(jsonData);
mobile = j.getString("mobile");
}
%>
我得到的输出Something went wrong
应该是数据库中的手机号码。
我应该如何在jsp中获取json数据?
谢谢