jQuery Ajax url使用方式

Posted 望月Coder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery Ajax url使用方式相关的知识,希望对你有一定的参考价值。

jQuery Ajax的使用场景:
页面需要通过后台逻辑,但只需要局部刷新以显示新的内容。

jQuery Ajax url使用方式
1.servlet方式:
需要在struts.xml中写一个action,跳转地址写servlet;
需要重写init方法(为了使用spring注入的bean);
设置响应编码response.setContentType("text/html; charset=UTF-8");
使用request.getParameter()接收参数;
使用response.getWriter().print()传递页面内容;

2.action方式:
(1)json输出数据
需要struts2-json-plugin.jar;
需要在struts.xml中package extends="json-default";result type="json";
需要声明接收到的页面参数,并get,set;
需要声明要传到页面的值,生成get;
(2)在action中使用 ServletActionContext.getResponse()获取response后使用response.getWriter().print()来传递页面内容。
需要声明接收到的页面参数,并get,set;















以上是关于jQuery Ajax url使用方式的主要内容,如果未能解决你的问题,请参考以下文章

在使用 jquery .ajax() 重定向的 POST 之后获取实际 URL

Jquery Ajax 两种访问方式

jquery使用ajax

jQuery 中与Ajax相关的API

jquery中的ajax参数

AJAX实现_JQuery实现方式get&post