有没有办法在 Meteor 中嵌套部分(HTML 片段)?
为什么我不能说
<template name="foo">hello world!</template>
<template name="bar">{{> foo}}</template>
<template name="baz">{{> bar}}</template>
?
这在任何 HTML 页面中都是很常见的事情,并且是 Mustache 和 Handlebars 的常规功能。当我尝试这个时,为什么 Meteor 会默默地失败?