ajax 第二例:发送 POST 请求| 学习笔记

开发者学堂课程【Ajax入门:ajax第二例:发送 POST 请求】学习笔记,与课程紧密联系,让用户快速学习知识。

课程地址:https://developer.aliyun.com/learning/course/31/detail/670


ajax第二例:发送 POST 请求


内容介绍

一、 POST 注意事项

二、 编写代码

三、 解决问题


一、POST注意事项


post 请求有一个请头: Content-Type: application/x-www-form-urlencoded. 它有三个注意事项:

1.open: xmlHttp. open "POST"

2.添加一歩:设置 content-Typei 请求头:

> xmlHttp. setRequestHeader ("ContentType","application/x-www-form-urlencoded");

3.send: xmlHttp. send ("username-zhangSan&password-123");发送请求时指定请求体。

如果发送请求时需要带有参数,一般都用POST请求


二、编写代码


1.选中:

public void doGet (HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

system. out.println("Hello AJAX!");

response .getwriter() .print ("Hello AJAX!!!");

加一个方法变为:

public void doPost (HttpServletRequest request,HttpServletResponse response )

throws ServletException, IOException l

System. out.println("(POST: ) Hello AJAX!");

response .getwriter() -print("(POST: ) Hello AJAX!!!");

2.再写 ajax2,打开,

修改 open 方法,指定请求方式为 POST

xmlHttp.open("post", "",true;

设置请求头 :Content-Type

xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");

 send ("uername-zhangSanspassword-123")

ajax 第二例:发送 POST 请求| 学习笔记

3.获取用户名:username

ajax 第二例:发送 POST 请求| 学习笔记

三、解决问题


接下来尝试一下POST

解决想要编码问题:text/html; charset=utf – 8

需要中文:utf – 8,将拼音改成中文。


上一篇:Ajax 安全性问题 | 学习笔记


下一篇:ajax第三例:用户名是否已被注册| 学习笔记