Angular:告诉ng-template它的上下文

时间:2018-08-07 08:46:57

标签: angular angular-cli angular2-template

我经常在我的应用程序中使用ng-templates,以便稍后将它们包含在* ngTemplateOutlet中,并将其传递给上下文。但是,当我定义模板本身时,它不知道上下文将具有的接口,所以说:

<ng-template #willUseLater
             let-item
             let-index="index">
    {{index}} — {{item}}
</ng-template>

给我类似ng: The template context does not defined a member called 'index'的错误。

有什么方法可以告诉ng-template以后使用它时将具有什么上下文?

0 个答案:

没有答案