本文介绍了Angular4模板参考变量分配的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遇到了此示例,我们可以看到:

I've come across this example where we can see:

<md-menu #menu="mdMenu">

我找不到对该模板="mdMenu"部分的任何引用在文档中.

I can't find any reference to the ="mdMenu" part of this template in the docs.

这有什么含义吗?还是仅仅是示例中的一个错误?

Is there some meaning to this or is it just a mistake on the example?

推荐答案

在文档中[mdMenuTriggerFor]="menu"指的是<md-menu #menu="mdMenu">

,在#menu="mdMenu"中,mdMenu是从Material导出的指令.

and in #menu="mdMenu", mdMenu is the directive exported from Material.

这篇关于Angular4模板参考变量分配的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 20:24