使用 lang.replace 的简单模板
根据 ContentPane 内容/模板的复杂性,一种简单的方法是使用简单的lang.replace
. 假设您制作了这样的姓名/年龄/生日模板(例如cai/personTpl.html
):
<dl>
<dt>Name</dt><dd>{name.firstname} {name.lastname}</dd>
<dt>Age</dt><dd>{age}</dd>
<dt>Birthday</dt><dd>{birthday}</dd>
</dl>
在您的 Javascript 中,您可以执行以下操作:
require([..other deps.., 'dojo/_base/lang', 'dojo/text!cai/personTpl.html'],
function(..other deps.., lang, personTpl) {
//.. your other code ..
// assuming person[i] is something like:
// {name: {firstname: 'A', lastname: 'B'}, age: 42..}
var cp1 = new dijit.layout.ContentPane({
title:"New Question",
content: lang.replace(personTpl, person[i]),
});
dijit.byId("centerLayout").addChild(cp1);
}
);//~require
更多关于 dojo/_base/lang::replace 与字典在这里:http ://dojotoolkit.org/reference-guide/1.8/dojo/_base/lang.html#dojo-base-lang-replace
使用自定义小部件的更复杂的模板
如果每个选项卡中使用的模板更复杂,例如拥有自己的小部件、使用事件等,您最好编写自定义小部件(而不是使用 ContentPane)。
例如,模板可以类似于 ( cai/widgets/personTpl.html
):
<dl>
<dt>Name</dt><dd data-dojo-attach-point='nameNode'></dd>
<dt>Age</dt><dd data-dojo-attach-point='ageNode'></dd>
<dt>Birthday</dt><dd>
<input type='text' data-dojo-type='dijit/form/DateTextBox'
data-dojo-attach-point='bdayInput' />
</dd>
</dl>
小部件可以是 ( cai/widgets/Person.js
):
define([ ..other deps.., "dojo/text!cai/widgets/personTpl.html"],
function(..other deps.., personTpl) {
return declare([_WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin], {
templateString: personTpl,
name: "unknown",
_setNameAttr: { node: "nameNode", type: "innerHTML" },
age: 0,
_setAgeAttr: { node: "ageNode", type: "innerHTML" },
birthday: new Date(),
_setBirthdayAttr: function(bday) {
this.bdayInput.set("value", bday);
this._set("birthday", bday);
}
}); //~declare
}
); //~define
然后您可以将 Person 小部件的实例添加到 TabContainer:
require([..other deps.., "cai/widgets/Person"],
function(..other deps.., Person) {
//.. your other code ..
// assuming person[i] is something like:
// {name: "Jerry", age: 42, birthday: new Date(), title: "JerryTab"}
var p = new Person(person[i]);
dijit.byId("centerLayout").addChild(p);
}
);//~require
有关小部件(以及具有映射到节点的属性的小部件)的更多信息:http: //dojotoolkit.org/reference-guide/1.8/quickstart/writingWidgets.html#mapping-widget-attributes-to-domnode-attributes