1. ホーム
  2. meteor

[解決済み] 多くのHTMLテンプレートファイルを持つ大規模なMeteorアプリを構造化するためのベストプラクティスは何ですか?[クローズド]

2022-04-24 16:25:54

質問

すべての例(リーダーボード、ワードプレイなど)では、1つのHTMLテンプレートファイルを持っています。 ベストプラクティスの例として、多くの異なるHTMLテンプレートファイルを持つ、大規模なオープンソースのMeteorプロジェクトはありますか? 大規模なアプリに必要なものを1つのテンプレートファイルにまとめるのは現実的ではないように思えます。

解決方法は?

ひとまとめにする! ドキュメントより

> HTML files in a Meteor application are treated quite a bit differently
> from a server-side framework. Meteor scans all the HTML files in your
> directory for three top-level elements: <head>, <body>, and
> <template>. The head and body sections are seperately concatenated
> into a single head and body, which are transmitted to the client on
> initial page load.
> 
> Template sections, on the other hand, are converted into JavaScript
> functions, available under the Template namespace. It's a really
> convenient way to ship HTML templates to the client. See the templates
> section for more.