本文實例講述了JS建造者模式基本用法。分享給大家供大家參考。具體實現方法如下:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 function getBeerById( id, callback){ _request('GET','URL'+id,function(res){ callback(res.responseText) }); }; function getBeerByIdBridge(){ getBeerById(id,function(res){ alert(res.toString()); }); //doAnothering; }; var el = document.querySelector('#test'); el.addEventListener('click',getBeerByIdBrige,false);所謂的建造者模式跟橋接模式一樣好像,就是常見的回調,讓思路更加清晰一點點
希望本文所述對大家的javascript程序設計有所幫助。