无法将数据从javascript传递到json

时间:2015-04-23 14:57:08

标签: javascript json servlets handsontable

我想将数据从桌面传递给servlet。我已经尝试了一种方法,当iItry传递给servlet时,我能够获取数据我无法从compile group: 'org.apache.httpcomponents' , name: 'httpclient-android' , version: '4.3.5' 获取null的数据。请告诉我的代码中有什么错误 ArrayToJson

request.getParameter("forecastdata");

的JavaScript

@WebServlet("/arrayToJson/*")
public class ArrayToJson extends HttpServlet {
    @Override
    protected void doPost(final HttpServletRequest request,
            final HttpServletResponse response) throws ServletException,
            IOException {
        StringBuffer jb = new StringBuffer();
        String line = null;
        request.getParameter("forecastdata");
        ;
    }
}

enter image description here

1 个答案:

答案 0 :(得分:0)

因为您正在使用jquery,所以您可以使用过滤器检查您的状况并完全禁用该行。有很多例子,甚至在stackoverflow中。

一个例子和小提琴是HERE

如果现在是你的情况,这可能会回答它!