首页 > 其他 > 详细

如何应用模板模式在现有的代码中

时间:2015-10-28 18:43:02      阅读:152      评论:0      收藏:0      [点我收藏+]

先上代码

var formatString = function(str,data){
				return str.replace(/\{#(\w+)#\}/g,function(match,key){
					return typeof data[key] === undefined ?  ‘‘ : data[key]
				});
			}



			self.each(function(){
				_this = $(this);
				//_html = ‘<div class="‘+iset.iSelectBox+‘"><div class="‘+iset.iSelectCurrent+‘" style="width:‘+iset.width+‘px">‘+self.find(‘option:selected‘).text()+‘</div><dl class="‘+iset.iSelectOption+‘" style="display:none; z-index:9999; width:‘+iset.width+‘px;">‘;
				//模板模式start
				var tpl = {
					d : [
						‘<div class="{#iselectbox#}">‘,
							‘<div class="{#iselectcurrent#}" style="width:{#width#}px">‘,
								‘{#text#}‘,
							‘</div>‘,
							‘<dl class="{#iselectoption#}" style="display:none; z-index:9999; width:{#width#}px;">‘

					].join(‘‘)
				}
				var idata = {
					iselectbox:iset.iSelectBox,
					iselectcurrent:iset.iSelectCurrent,
					width:iset.width,
					text:self.find(‘option:selected‘).text(),
					iselectoption:iset.iSelectOption
				}
				console.log(idata);
				_html += formatString(tpl[‘d‘],idata);
				//模板模式end

 主要应用在字符串拼接的应用中,这样可以减少以前经常出现的拼接错误,格式比较清晰吧。

如何应用模板模式在现有的代码中

原文:http://www.cnblogs.com/junwu/p/4917843.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!