Home > Web Front-end > JS Tutorial > body text

What are the differences between using for loop var and using let in jQuery?

php中世界最好的语言
Release: 2018-04-27 13:55:59
Original
1773 people have browsed it

This time I will bring you jQueryWhat are the differences between using for loopvar and using let, and Notes on using for loop var and using let in jQueryWhat are they? The following is a practical case. Let’s take a look.

Today I found a problem when writing the jQuery request interface:

When sending a request using AJAX, another AJAX request was nested. It was found that the success of the inner request was not correct for the first success. The loop variable i in cannot be obtained. The specific code is as follows:

$.ajax({
    type: "get",
    url: "//////////////////////////",
    success: function (result) {
      rs = JSON.parse(result).data;
      for (var i = 0; i < rs.length; i++) { //用var定义有问题
        var pos_ = ""
        $.ajax({
          type: 'GET',
          async: false,
          dataType: 'jsonp',
          contentType: 'application/json; charset=utf-8',
          url: "///////////////////////////////////",
          success: function (result) {
            console.log(rs[i]) //报错
          }
        })
      }
    }
  })
Copy after login

In the callback function after the second ajax request, rs[i] will report an error.

Solution:

Change the variable var i declared in the for loop to let i

Specific reasons:

In the for loop after the first callback function, if you send a request again, the for loop will not stop, even if you write a synchronous request.

But if you use let after declaring the for loop variable, the code will not start the next loop until your request is completed and the callback function is executed.

This takes into account a closure problem. If you write var and let, the scopes declared are different.

Let i will be passed as a local variable

Var i will be passed as a global variable

If you want to pass the i variable to the next layer, use let to declare.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Summary of JS’s method of making random numbers

##Detailed explanation of the steps to use the nodeJS module

The above is the detailed content of What are the differences between using for loop var and using let in jQuery?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!