JS建造者模式的使用方法介绍
本文实例讲述了JS建造者模式基本用法。分享给大家供大家参考。具体实现方法如下:
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程序设计有所帮助。
本文地址:http://www.45fan.com/bcdm/15350.html