如何通过一个javascript变量一个Java servlet? [英] how to pass a javascript variable to a java servlet?

查看:174
本文介绍了如何通过一个javascript变量一个Java servlet?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想一个JavaScript变量传递给一个Java servlet。我开发一个Web应用程序。这是我的HTML code:

I want to pass a javascript variable to a java servlet. I am developing a web application. This is my html code:

<p id="test">Some text</p>

这是我写的JavaScript文件:

And this is what i write in the javascript file:

var myVar = document.getElementById('test').innerText;

$.ajax({
    url: 'Test',
    data: {
        myPostVar: myVar
    },
    type: 'POST'
});

和那么这在servlet(中的doGet):

And then this in the servlet (in the doGet):

String result = request.getParameter("myPostVar");
System.out.print(result);

,如果我运行Test.java进行测试,它给了我空。我GOOGLE了太多,但找不到任何解决办法。

And if i run the Test.java to test, it gives me "null". I googled too much but could not find any solution.

推荐答案

现在的问题是你有方法在你的AJAX和你正在试图让它在的doGet()你的servlet的。

The problem is you have the post method in your ajax and you are trying to get it in the doGet() of your servlet.

使用的doPost 或改变方法获取在阿贾克斯。

Use doPost or change the method to Get in your ajax.

这篇关于如何通过一个javascript变量一个Java servlet?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆