javascript編程中一種常見的代碼壞味道:Pyramid of doom(金字塔厄運)

來源:互聯網
上載者:User

標籤:pyramid of doom   金字塔厄運   

Pyramid of doom說的是代碼嵌套層次太深,太多的代碼縮排,導致代碼橫向增長大於縱向增長。非常影響代碼的可讀性,因為我們看不清嵌套關係,很容易弄錯變數的範圍,大括弧多了或者少了等問題。


代碼1:if層次過深

bool conditionA = executeStepA();if (conditionA){    bool conditionB = executeStepB();    if (conditionB){        bool conditionC = executeStepC();        if (conditionC){            bool conditionD = executeStepD();    if (conditionD){...    }        }    }}


代碼2:複雜的ajax

$.ajax({    url: url1,    success: function(data){        $.ajax({            url: url2,            data: data,            success: function(data){                $.ajax({                    //...                });            }            });    }});


代碼3:過多的jquery回調

// Code uses jQuery to illustrate the Pyramid of Doom(function($) {  $(function(){    $("button").click(function(e) {      $.get("/test.json", function(data, textStatus, jqXHR) {        $(".list").each(function() {          $(this).click(function(e) {            setTimeout(function() {              alert("Hello World!");            }, 1000);          });        });      });    });  });})(jQuery);


很明顯上面這3段代碼看起來都非常的醜陋,通過一定的手段是可以去除這種代碼壞味道的。“ The Pyramid of Doom: A javascript Style Trap"這篇文章將代碼3最佳化成下面的樣子:
// Code uses jQuery(function($) {  function init() {    // Add onClick to buttons    $("button").click(getData);  }  function getData() {    $.get("/test.json", onSuccess);  }  function onSuccess(data, textStatus, jqXHR) {    $(".list").each(addListOnClick);  }  function addListOnClick(e) {    $(this).click(helloWorldTimeout);  }  function helloWorldTimeout() {    setTimeout(helloWorldAlert, 1000);  }  function helloWorldAlert() {    alert("Hello World!");  }  $(init);})(jQuery);

可以看到最佳化後的代碼:沒有那麼多的縮排和層次嵌套,雖然代碼縱向增長了,但是可讀性還是得到了改善。


著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

javascript編程中一種常見的代碼壞味道:Pyramid of doom(金字塔厄運)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.