关于ajax POST这是正确的吗?

时间:2010-05-06 20:42:31

标签: javascript jquery html ajax

您能否确认我正确理解this

  

但是,始终使用POST请求   当:

- A cached file is not an option (update a file or database on the
     

服务器)

使用POST,xmlhttp.open("POST","ajax_test.asp",true);中指定的文件 不会被缓存(发送到\Temporary Internet Files)?它只会留在服务器上吗?

如果是这样,调用ajax POST后更新的html文件是否在\Temporary Internet Files中更新?

我是否遗漏了这种机制的其他重要信息?

谢谢。

1 个答案:

答案 0 :(得分:2)

如果您使用POST,则表示正确的假设,您在通话中已获得GET。

xmlhttp.open("POST","ajax_test.asp",true);
相关问题