加载胡子模板的一部分

时间:2014-01-18 22:34:00

标签: javascript mustache

我开始使用小胡子,想知道如何加载模板的不同部分。像这样。

require(['jquery','stache!templates/message'], function($, template) {
 'use strict';

var person1 = {
    firstName: "John",     
};
$('#container1').html(template(person1))

var person2 = {
    lastName: "Petersen",       
};
$('#container2').html(template(person2))

});

和html模板message.html。

这应仅加载在container1

<h1>{{firstName}}</h1>

这应仅加载在container2

<h1>{{lastName}}<h2>

我该怎么做?

0 个答案:

没有答案