struts 2.0中java脚本内的Ajax url

发布于 2024-09-19 08:14:53 字数 147 浏览 2 评论 0原文

如何在struts 2.0中的java脚本中使用Ajax url。

例如,对于 servlet,我们编写 url= ControllerServlet?ActionId=myJsp

同样如何为 struts 2 编写。

提前致谢。

how to use Ajax url inside java script in struts 2.0.

For example for servlets we write
url= ControllerServlet?ActionId=myJsp

similarly how to write for struts 2.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

请爱~陌生人 2024-09-26 08:14:53

我得到了答案。

url 将是 -

url= Controller.action?param="value"

i got the answer.

the url will be -

url= Controller.action?param="value"

行雁书 2024-09-26 08:14:53
xmlHttp.open("GET","yourNameSpace/yourActionName?property=value1&property2=value2",true);

xmlHttp.send();

不要对上面的 yourNameSpace 感到困惑,

检查 struts.xml/struts-config.xml 文件中 package 标记的 namespace 属性,并在那里给同样的。

如果您想单独发送参数,请使用下面给出的 post ajax 请求。

var params = "property1=value1&property2=value2";

xmlhttp.open("POST","yourNameSpace/yourActionName",true);

xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.setRequestHeader("Content-length", params.length);
xmlhttp.setRequestHeader("Connection", "close");

xmlhttp.send(params);
}

希望这有帮助。

xmlHttp.open("GET","yourNameSpace/yourActionName?property=value1&property2=value2",true);

xmlHttp.send();

Don't get confused by yourNameSpace in the above

Check your namespace attribute of package tag in struts.xml/struts-config.xml file and give the same there.

If you want to send parameters separately use post ajax request given below.

var params = "property1=value1&property2=value2";

xmlhttp.open("POST","yourNameSpace/yourActionName",true);

xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.setRequestHeader("Content-length", params.length);
xmlhttp.setRequestHeader("Connection", "close");

xmlhttp.send(params);
}

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文