search
HomeBackend DevelopmentPHP TutorialAjax small package get, post request

Ajax small encapsulation A small encapsulation of ajax get request
  1. function Ajax() {
  2. var xhr =null;
  3. if(window.XMLHttpRequest) {
  4. xhr = new XMLHttpRequest();
  5. } else {
  6. xhr = new ActiveXObject("Microsoft.XMLHttp");
  7. }
  8. this.get=function(url,success,fail){ //get request
  9. xhr.open("GET", "1.jsp",true);
  10. xhr.onreadystatechange=function(){
  11. if( xhr.readyState==4) {
  12. alert(xhr.status);
  13. if(xhr.status==200) {
  14. var txt = xhr.responseText;
  15. txt = eval("("+txt+")");
  16. var ch = txt.charAt(0);
  17. if(ch==" var xml = xhr.responseXML;
  18. success(eval("("+xml+")")) ;
  19. } else if(ch=="["||ch=="{") {//json type
  20. txt = eval("("+txt+")");
  21. success(txt);
  22. } else {//If you don’t know, just return
  23. success(txt);
  24. }
  25. } else {
  26. if(fail) {
  27. fail(xhr.status);
  28. }
  29. }
  30. }
  31. };
  32. xhr.send(null );
  33. };
  34. this.post = function (url,param,success,fail) {//post request
  35. xhr.open("POST", "1.jsp",true);
  36. xhr.onreadystatechange =function(){
  37. if(xhr.readyState==4) {
  38. alert(xhr.status);
  39. if(xhr.status==200) {
  40. var txt = xhr.responseText;
  41. var ch = txt.charAt (0);
  42. if(ch==" var xml = xhr.responseXML;
  43. success(eval("("+xml+")"));
  44. } else if(ch ==="["||ch=="{") {//json type
  45. txt = eval("("+txt+")");
  46. success(txt);
  47. } else {//Don't know, return directly
  48. success(txt);
  49. }
  50. } else {
  51. if(fail) {
  52. fail(xhr.status);
  53. }
  54. }
  55. }
  56. };
  57. xhr.setRequestHeader("Content-Type", " application/x-www-form-urlencoded");
  58. xhr.send(param);
  59. };
  60. }
Copy code


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
使用http.PostForm函数发送带有表单数据的POST请求使用http.PostForm函数发送带有表单数据的POST请求Jul 25, 2023 pm 10:51 PM

使用http.PostForm函数发送带有表单数据的POST请求在Go语言的http包中,可以使用http.PostForm函数发送带有表单数据的POST请求。http.PostForm函数的原型如下:funcPostForm(urlstring,dataurl.Values)(resp*http.Response,errerror)其中,u

如何使用golang中的http.Post函数发送POST请求并获取响应如何使用golang中的http.Post函数发送POST请求并获取响应Nov 18, 2023 am 08:05 AM

如何使用golang中的http.Post函数发送POST请求并获取响应在使用golang进行网络编程时,http包是我们经常使用的一个重要模块。其中,http.Post函数是一个非常实用的函数,可以方便地发送POST请求并获取响应结果。下面将介绍如何使用http.Post函数发送POST请求并获取响应的具体步骤和代码示例。步骤一:导入http包在代码中首先

Python 3.x 中如何使用urllib.request.urlopen()函数发送POST请求Python 3.x 中如何使用urllib.request.urlopen()函数发送POST请求Jul 31, 2023 pm 07:10 PM

Python3.x中如何使用urllib.request.urlopen()函数发送POST请求在网络编程中,常常需要通过HTTP协议发送POST请求来与服务器进行交互。Python提供了urllib.request.urlopen()函数来发送各种HTTP请求,其中包括POST请求。本文将详细介绍如何使用urllib.request.urlop

如何在FastAPI中处理POST请求并返回JSON响应如何在FastAPI中处理POST请求并返回JSON响应Jul 29, 2023 pm 03:08 PM

如何在FastAPI中处理POST请求并返回JSON响应FastAPI是一个快速(高性能)、易用、并且基于标准Python类型提示的现代Web框架。它具有强大的异步支持,可以轻松处理高并发情况。在FastAPI中,我们可以使用简洁的代码来处理POST请求,并返回JSON响应。本文将介绍如何在FastAPI中完成这个任务,并提供相应的代码示例。首先,我们需要创

PHP中POST请求的正确用法PHP中POST请求的正确用法Mar 27, 2024 pm 03:15 PM

PHP中POST请求的使用是在网站开发中常见的操作,通过POST请求可以向服务器发送数据,例如表单数据、用户信息等。正确使用POST请求可以确保数据安全性和准确性,下面将介绍PHP中POST请求的正确用法,并提供具体的代码示例。1.PHP中POST请求的基本原理在PHP中,通过使用$_POST全局变量可以获取通过POST方法提交的数据。POST方法将表单数

学习Go语言文档中的net/http.Post函数发送POST请求学习Go语言文档中的net/http.Post函数发送POST请求Nov 04, 2023 am 11:39 AM

学习Go语言中的网络编程是非常重要的一部分,其中发送POST请求是不可或缺的一环。本文将介绍如何使用Go语言文档中的net/http.Post函数来发送POST请求,包括具体的代码示例。首先,我们需要了解POST请求是什么,是一种发送数据到服务器的请求方式。与GET请求不同,POST请求可以发送更多的数据,并且不会将数据暴露在URL中。通常情况下,我们使用P

PHP入门指南:POST请求和响应PHP入门指南:POST请求和响应May 20, 2023 pm 05:52 PM

在Web开发中,交互式应用程序允许用户与网站互动。HTTP协议被设计为可以在服务器和客户端之间传输数据。PHP是一种Web开发语言,可用于处理HTTP请求和响应。本文将介绍如何使用PHP处理POST请求和响应。首先,我们将简要介绍HTTP协议的工作原理,然后讨论如何使用PHP的内置函数处理POST请求和响应。最后,我们将讨论一些最佳实践,以确保您的代码安全和

如何在PHP中使用RESTful API的POST请求如何在PHP中使用RESTful API的POST请求Sep 05, 2023 pm 06:24 PM

如何在PHP中使用RESTfulAPI的POST请求在现代应用程序开发中,使用RESTfulAPI来进行数据通信已经成为一种趋势。而POST请求是RESTfulAPI中常用的一种方法,用于向服务器提交数据。在PHP中,我们可以通过几个简单的步骤来使用POST请求发送数据给服务器,并获得服务器返回的结果。首先,我们需要使用PHP的cURL库来发送HTTP

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use