Underscore.template - 模板引擎源码分析

模板引擎概述

模板引擎(这里特指用于Web开发的模板引擎)是为了使用户界面与业务数据(内容)分离而产生的,它可以生成特定格式的文档,用于网站的模板引擎就会生成一个标准的HTML文档。

underscore模板引擎实现

使用方式

Underscore.js说明文档

var compiled = _.template("hello: <%= name %>");
compiled({
     name: 'moe'});
// => "hello: moe"

var template = _.template("<%- value %>");
template({
     value: '
                    
                    

你可能感兴趣的:(前端开发,Underscore,模板引擎)