请求方式 | form | herf | ajax |
---|---|---|---|
能否跳转页面 | 能 | 能 | 否 |
参数 | input等表单元素 | ?a=b&c=d | data属性 |
请求方式 | method=“post/get” | get | type:“post/get” |
一般过程 | jspA-[-servlet…-]-jspB | jspA-[-servlet…-]-jspB | ajaxA==servlet |
返回数据 | 存放在respect域+请求转发 | 存放在request域+请求转发 | response.getWriter()----text/json |
ajax请求在这一次请求中在服务器存入域对象中的数据,不能在当次请求后从网页端获取到。