平时写ajax请求也一直用的post,到底什么时候用get?get优点在哪里
get是获取 ,post是发送。以注册和登录为例,注册的时候用post 发送注册信息。而登陆时使用get获取注册信息来验证。至于优缺点不好说吧。get的时候发送的数据为空 xml.send(); post的时候要发送要请求的数据data xml.send(data)