本文整理汇总了TypeScript中glimmer-runtime.Template类的典型用法代码示例。如果您正苦于以下问题:TypeScript Template类的具体用法?TypeScript Template怎么用?TypeScript Template使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Template类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: render
function render(template: Template, context = {}, view: PathReference<Opaque> = null) {
let options = { appendTo: root, dynamicScope: new TestDynamicScope(view) };
self = new UpdatableReference(context);
result = template.render(self, env, options);
assertInvariants(result);
return result;
}
示例2: render
function render(template: Template, self: any) {
return template.render(new UpdatableReference(self), env, { appendTo: root, dynamicScope: new TestDynamicScope(null) });
}
示例3: render
function render(template: Template, context={}) {
self = new UpdatableReference(opaque(context));
result = template.render(self, env, { appendTo: root, dynamicScope: new TestDynamicScope(null) });
assertInvariants(result);
return result;
}
示例4: UpdatableReference
function render<T>(template: Template<T>, context={}) {
self = new UpdatableReference(opaque(context));
result = template.render(self, root, new TestDynamicScope());
assertInvariants(result);
return result;
}
示例5: UpdatableReference
function render<T>(template: Template<T>, self: any) {
return template.render(new UpdatableReference(self), root, new TestDynamicScope());
}