웹마스터 팁
javascript template parser for xe (난이도 중급)
2013.10.09 17:48
<!--// 귀찮은 관계로 전 이 방법을 채택. -->
<div id="TPL"><!--{@ echo file_get_contents($tpl_path.'_list.html'); }--></div>
실 서비스에 적용한다면 ajax-html 선호할 듯..
<!--// 이렇게 쓰이겠죠? -->
<script>//<![CDATA[
(function($){$.get('{$tpl_path}_list.html', function(data){ window.some_init_ajax(data); });
})(jQuery);//]]></script>
_list.html
<tr class="no_{$val->no}">
<td class="type_">{$val->type}</td>
<td class="quality_">
<a href="javascript:_Filter({name:'{$val->quality}'});">{$val->quality}</a>
</td>
<td class="name_">
<a href="javascript:_Filter({name:'{$val->name}'});">{$val->name}</a> ({$val->level})
</td>
<td class="regdate_">
<a href="javascript:_Filter({regdate:'{$val->regdate}'});">{$val->regdate}</a>
</td>
<td class="hello_">{$val->hello}</td>
<td class="user_name_">{$val->user_name? 'O':'-'}</td>
<td class="nick_name_">{$val->nick_name? 'O':'-'}</td>
</tr>
그리고 javascript 소스입니다.. 요게 제~~~일 중요한 핵심이죠! (코드 피융신같이 나와서 파일로 첨부)
// xe template regex
var tpl_regex = /{(@[\s\S]+?|(?=\$\w+|_{1,2}[A-Z]+|[!\(+-]|\w+(?:\(|::)|\d+|[\'\"].*?[\'\"]).+?)}/;
var render = function()
{
var _tpl = tpl, matches;
var val = this;
while(matches = _tpl.match(tpl_regex))
{
_tpl = _tpl.replace(matches[0], (function(){
matches[1] = matches[1]
.replace(/->(?=[a-z])/ig, '.')
.replace(/\$([a-z]+)/i, '$1')
;
matches[1] = eval(matches[1]);
return matches[1]==undefined? '' : matches[1];
})());
}
$(tbody).append(_tpl);
// for client memory
matches = undefined;
_tpl = undefined;
}
$.exec_json('some.getSomeList', params, function(p){
if(p.error)
{
alert(p.message);
return;
}
$.each(p.data, render);
});
anizone 구동 방식이 정말 궁금했는데 MVC 방식이었군요!
전 pjax 같은 걸 쓰는 줄 알았습니다. 이 걸 쓰려면 잘 설계해서 써야겠네요.
좋은 팁 감사합니다.