我的流星应用程序有一个 base.html 文件,如下所示:
<head>
<title>MyApp</title>
</head>
<body>
<template name="bodyContent">
{{subContent}}
</template>
</body>
接下来,我定义了三个不同的模板:
<template name="templateA">Some text</template>
<template name="templateB">Bla bla bla</template>
<template name="templateC">Your highscore is {{score}}</template>
我怎样才能使 {{subContent}} 能够在运行时在这三个模板之一之间交替?
就像是:
currentTemplateUsed = 'templateB'
Template.bodyContent.subContent = Template[currentTemplateUsed]
但这不起作用。是否有其他方法可以实现此功能?