jquery.Ajax回調成功後資料賦值給全域變數的問題

來源:互聯網
上載者:User

標籤:jquery ajax 回調 全域變數

先來看一代碼

function checkoldpass($pass) {    $.ajax({        type: ‘get‘,        url: ‘/admin/check‘,        data: {‘password‘: $pass},        dataType: ‘json‘,        success: function (data) {            console.log(data)        }    });    console.log(123);}

這個運行結果是:

瀏覽器控制台先列印:123,然後才列印返回來的data。

為什麼會是這樣。因為js ajax請求原生就是非同步。

這就是說如果你在ajax回呼函數外聲明的變數,在ajax外列印會是null或者是undefined

function checkoldpass($pass) {    var msg = null;    $.ajax({        type: ‘get‘,        url: ‘/admin/check‘,        data: {‘password‘: $pass},        dataType: ‘json‘,        success: function (data) {            msg = data        }    });    console.log(msg);}

這樣列印出來的msg肯定是null。因為是非同步,所以js順序執行到msg這裡肯定是空了。

解決這個問題的辦法

function checkoldpass($pass) {    var msg = null;    $.ajax({        type: ‘get‘,        url: ‘/admin/check‘,        data: {‘password‘: $pass},        dataType: ‘json‘,        async:false,        success: function (data) {            msg = data        }    });    console.log(msg);}

在請求的代碼裡加上async:false,把請求設定為同步的。這樣只有回調之後,js才會執行下面的代碼。

但這種體驗個人感覺不好。還是在回調裡完成其它的操作比較好。

jquery.Ajax回調成功後資料賦值給全域變數的問題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.