I am trying to read the post request parameters from my HTML. I can read the get request parameters using the following code in JavaScript.
$wnd.location.sea
If you're working with a Java / REST API, a workaround is easy. In the JSP page you can do the following:
<% String action = request.getParameter("action"); String postData = request.getParameter("dataInput"); %>