如何从 Ajax 或 JavaScript 调用 Struts1 Action?
我需要在加载 JSP 时调用一个操作。跟踪访问该页面的用户数量。
我有一个操作 VisitorCounterAction
,它会在其中更新数据库。 加载 JSP 时,我调用 ajax 函数 callCounter()
;
{
alert("callCounter");
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
// i need some correction here
xmlhttp.open("GET",VisitorCounterAction,false);
xmlhttp.send(null);
alert("callCounter returned from Action");
}
我收到一个例外:
/web/guest/content?p_p_id=31&p_p_lifecycle=0&p_p_state=pop_up&p_p_mode=view&_31_struts_action=%2Fimage_gallery%2Fview_slide_show&_31_folderId=10605 generates exception: null
请帮我解决这个问题。或者任何其他调用操作的方式。 我无法重新加载页面,因为它会再次调用 onload 函数。
谢谢, DJ
I need to call an action on load of a JSP. To keep track of number of users who visited that page.
I have an action VisitorCounterAction
, where it updates the database.
On load of the JSP I'm calling an ajax function callCounter()
;
{
alert("callCounter");
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
// i need some correction here
xmlhttp.open("GET",VisitorCounterAction,false);
xmlhttp.send(null);
alert("callCounter returned from Action");
}
I am getting an exception as:
/web/guest/content?p_p_id=31&p_p_lifecycle=0&p_p_state=pop_up&p_p_mode=view&_31_struts_action=%2Fimage_gallery%2Fview_slide_show&_31_folderId=10605 generates exception: null
Please help me with this. Or any other way to call the Action.
I can't reload the page as it'll call onload function again.
Thanks,
Dj
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
XMLHttpRequest 对象的
open
方法的第二个参数应该是一个字符串,它是请求的 URL。在您的情况下,它应该是映射到您的VisitorCounterAction
的 Struts 操作映射。像这样的东西:The second parameter to the XMLHttpRequest object's
open
method should be a string that is the URL of the request. In your case it should be the Struts' Action Mapping that maps to yourVisitorCounterAction
. Something like:调用操作时需要指定正确的 url。在 struts.xml 文件中,您将创建一个带有名称的操作条目。假设该名称为 VisitorCounterAction。请注意,这不是 Action 类的名称,而是您在 struts.xml 中使用的名称。
此外,您还可以配置 struts 来识别特定的扩展。默认情况下它是.do。
要请求操作,您将使用:VisitorCounterAction.do。
因此请尝试:
另请注意 URL 周围的双引号,因为这是 xmlHttp 对象的 open() 方法中的字符串。
You need to specify the correct url when calling the action. In your struts.xml file you would have created an action entry with a name. Let's say that name is VisitorCounterAction. Note that this is not the name of the Action class but the name you use in struts.xml.
Also you would have configured struts to recognize a particular extension. By default it is .do.
To request the action you will then use: VisitorCounterAction.do.
So try:
Note also the double quotes around the URL as this is a String in the xmlHttp object's open() method.
如果您使用的是 Liferay 4.2,那么此链接可能会对您有所帮助 (http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Ajax+Toolkit)。 Liferay 4.2 有自己的一组 javascript API 用于执行 AJAX 功能(在 jquery 中实现)。
If you are using Liferay 4.2, then this link might help you (http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Ajax+Toolkit). Liferay 4.2 have own set of javascript API for doing AJAX functionality(Implemented in jquery).