私の流星アプリには、次のような base.html ファイルがあります。
<head>
<title>MyApp</title>
</head>
<body>
<template name="bodyContent">
{{subContent}}
</template>
</body>
次に、3 つの異なるテンプレートを定義します。
<template name="templateA">Some text</template>
<template name="templateB">Bla bla bla</template>
<template name="templateC">Your highscore is {{score}}</template>
{{subContent}} を作成して、実行時にこれら 3 つのテンプレートのいずれかを切り替えるにはどうすればよいですか?
何かのようなもの:
currentTemplateUsed = 'templateB'
Template.bodyContent.subContent = Template[currentTemplateUsed]
しかし、それはうまくいきません。この機能を達成するための他のアプローチはありますか?