struts 2.0中java脚本内的Ajax url
如何在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我得到了答案。
url 将是 -
url= Controller.action?param="value"
i got the answer.
the url will be -
url= Controller.action?param="value"
不要对上面的 yourNameSpace 感到困惑,
检查 struts.xml/struts-config.xml 文件中 package 标记的 namespace 属性,并在那里给同样的。
如果您想单独发送参数,请使用下面给出的 post ajax 请求。
希望这有帮助。
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.
Hope this helps.