search
HomeWeb Front-endJS TutorialThe difference between success and complete in jQuery.ajax

$.ajax({
      type: "post",
      url: url,
      dataType:'html',
      success: function(data) { },
     complete: function(XMLHttpRequest, textStatus) { },
     error: function(){}
});

success: Function called when the request is successful. This function will get one parameter: the data returned from the server. The function is called when the request is successful, i.e. status==200.
complete: Function called when the request is completed. This function will get two parameters: XMLHttpRequest object and a string describing the type of request success. The function is called when the request is completed, i.e. status==404, 403, 302....

So, when writing the success or complete method, pay attention to the parameters passed in, and use the parameter objects passed in to solve our problems

Parameter list:

Parameter name Type Description
url String (Default: current page address) The address to send the request.
type String (Default: "GET") Request method ("POST" or "GET") , the default is "GET". Note: Other HTTP request methods, such as PUT and DELETE can also be used, but are only supported by some browsers.
timeout Number Set the request timeout (milliseconds). This setting overrides the global setting.
async Boolean (Default: true) By default, all requests are asynchronous requests. If you need to send synchronous requests, set this option to false. Note that a synchronous request will lock the browser, and the user must wait for the request to complete before other operations can be performed.
beforeSend Function Functions that can modify the XMLHttpRequest object before sending the request, such as adding custom HTTP headers. The XMLHttpRequest object is the only parameter.
function (XMLHttpRequest) {         this; // the options for this ajax request
         }
cache Boolean (Default: true) jQuery 1.2 new feature, set to false The request information will not be loaded from the browser cache.
complete Function After the request is completedCallback function (both when the request succeeds or fails transfer). Parameters: XMLHttpRequest object, success information string.
function (XMLHttpRequest, textStatus) {         this; // the options for this ajax request
         }
contentType String (Default: "application/x-www-form-urlencoded" ) Content encoding type when sending information to the server. The default value is suitable for most applications.
data Object,
String
Data sent to the server. Will be automatically converted to request string format. Appended to the URL in GET requests. See the processData option description to disable this automatic conversion. Must be in Key/Value format. If it is an array, jQuery will automatically assign the same name to different values. For example, {foo:["bar1", "bar2"]} is converted to '&foo=bar1&foo=bar2'.
dataType String

The data type expected to be returned by the server. If not specified, jQuery will automatically return responseXML or responseText based on the HTTP package MIME information and pass it as the callback Function parameter. Available values:

"xml": Returns an XML document that can be processed by jQuery .

"html": Returns plain text HTML information; contains script elements.

"script": Returns plain text JavaScript code. Results are not cached automatically.

"json": Returns JSON data.

"jsonp": JSONP format. use When calling a function in JSONP format, such as "myurl?callback=?" jQuery will automatically replace ? with the correct function name to execute the callback function.

error Function (默认: 自动判断 (xml 或 html)) 请求失败时将调用此方法。这个方法有三个参数:XMLHttpRequest 对象,错误信息,(可能)捕获的错误对象。
function (XMLHttpRequest, textStatus, errorThrown) {         // 通常情况下textStatus和errorThown只有其中一个有值 
         this; // the options for this ajax request
         }
global Boolean (默认: true) 是否触发全局 AJAX 事件。设置为 false 将不会触发全局 AJAX 事件,如 ajaxStart 或 ajaxStop 。可用于控制不同的Ajax事件
ifModified Boolean (默认: false) 仅在服务器数据改变时获取新数据。使用 HTTP 包 Last-Modified 头信息判断。
processData Boolean (默认: true) 默认情况下,发送的数据将被转换为对象(技术上讲并非字符串) 以配合默认内容类型 "application/x-www-form-urlencoded"。如果要发送 DOM 树信息或其它不希望转换的信息,请设置为 false。
success Function 请求成功后回调函数。这个方法有两个参数:服务器返回数据,返回状态
function (data, textStatus) {         // data could be xmlDoc, jsonObj, html, text, etc...
         this; // the options for this ajax request
         }

The above is the detailed content of The difference between success and complete in jQuery.ajax. For more information, please follow other related articles on the PHP Chinese website!

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
php中success方法怎么用php中success方法怎么用Mar 06, 2023 am 09:12 AM

php中success方法是用于展示一个成功信息,其使用语法是“Success('...','Http://www.xxx.com/Admin/User/Index');”,当我们没有写Url的时候,系统则会判断有无上一页,如果有系统,则会跳转至上一页,否则将不会进行跳转。

laravel中的success方法怎么用laravel中的success方法怎么用Aug 10, 2023 pm 02:09 PM

在Laravel中,success方法用于在控制器中返回成功的响应。要使用success方法,我们需要在控制器中引入Response类,然后,可以使用该类的实例来调用success方法。可以通过设置响应的消息、需要返回的数据、响应的状态码,并将这些参数传递给success方法,将会返回一个成功的响应,其中包含了我们设置的消息和用户数据。

学习PHP中success方法的最佳实践学习PHP中success方法的最佳实践Mar 22, 2024 pm 02:51 PM

学习PHP中success方法的最佳实践,需要具体代码示例PHP是一种流行的服务器端脚本语言,被广泛应用于Web开发领域。在PHP中,success方法是一种常见的用于判断操作成功与否的方法,通常用来返回成功的消息或代码。学习PHP中success方法的最佳实践,需要结合实际的代码示例进行演示和解释。首先,让我们来看一个简单的例子,展示一个成功的succes

优化项目开发:掌握Laravel的success方法优化项目开发:掌握Laravel的success方法Mar 10, 2024 pm 10:00 PM

优化项目开发:掌握Laravel的success方法,需要具体代码示例在当今快节奏的软件开发环境中,如何高效地开发项目并确保项目的稳健运行成为了开发者们面临的重要挑战。而Laravel作为现今流行的PHP开发框架之一,提供了许多方便的功能和方法来帮助开发者快速搭建并优化项目。其中,success方法是一个在Laravel中非常有用的功能,可以在项目开发过程中

Laravel success方法的高效应用技巧Laravel success方法的高效应用技巧Mar 10, 2024 pm 01:30 PM

Laravelsuccess方法的高效应用技巧Laravel是一款十分强大的PHP框架,它提供了诸多便捷的方法和工具,帮助开发者快速构建高质量的web应用。其中,success方法是在开发中经常使用的一个方法,在处理成功返回时非常实用。本文将介绍success方法的高效应用技巧,并提供具体的代码示例,帮助读者更好地理解和应用这一方法。success方法的作

利用Laravel success方法提升开发效率利用Laravel success方法提升开发效率Mar 11, 2024 pm 02:06 PM

标题:利用LaravelSuccess方法提升开发效率在Laravel开发中,成功地处理用户请求并返回相关信息是非常重要的一项任务。为了简化这一过程并提高开发效率,Laravel提供了success方法。本文将探讨如何利用success方法来简化成功响应的处理,并提供具体的代码示例。概述Laravel的success方法用于生成成功响应并

Laravel中success方法的使用指南Laravel中success方法的使用指南Mar 10, 2024 pm 03:45 PM

Laravel中success方法的使用指南在Laravel框架中,success方法是一个非常常用的方法,用于返回成功的响应。在API开发中尤其常见,它可以帮助我们规范化返回数据格式,让前端开发更加方便。在本文中,我们将详细介绍success方法的使用指南,并提供具体的代码示例来演示其用法。什么是success方法?Laravel框架中的success方法

深入了解Laravel中的success方法深入了解Laravel中的success方法Mar 09, 2024 pm 09:15 PM

当我们在使用Laravel框架开发应用程序时,经常会遇到需要在操作成功后显示提示信息的情况。在这种情况下,我们可以使用Laravel中的success方法来快速且方便地实现。本文将深入探讨Laravel中success方法的使用,包括其功能、参数含义以及具体的代码示例。1.success方法的功能在Laravel框架中,success方法属于Session

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