淺談對Mustache的學習狀況

Mustache

Mustache是一個模板庫,用起來很是的簡單 html

它能夠很好的把數據,html頁面分開,而後就是進行頁面分割來,進行前端MVC模型開發來,加上框架backbone的MVC功能,前端就能夠進行MVC模型開發了。 前端

如今我簡單地講解下我今日對Mustache的學習狀況 git

一個簡單的例子: github

var person = {
    firstName: "Christophe",
    lastName: "Coenraets",
    blogURL: "http://coenraets.org"
};
var template = "<h1>{{firstName}} {{lastName}}</h1>Blog: {{blogURL}}";
var html = Mustache.to_html(template, person);
$('#sampleArea').html(html);

輸入出結果: 框架

Christophe Coenraets

Blog: http://coenraets.org


數據爲person,模板是template,html是須要顯示到頁面的html代碼 學習

可是和backbone怎麼混合一塊兒使用,還在研究中,下一章待續。。 code

相關文章
相關標籤/搜索