Questions tagged «angular2-components»

8
角度-组件中module.id的含义是什么?
在Angular应用中,我已经看到@Component具有property moduleId。这是什么意思? 当module.id未在任何地方定义时,该应用程序仍然可以运行。它仍然如何工作? @Component({ moduleId: module.id, selector: 'ng-app', templateUrl: 'app.component.html', styleUrls: ['app.component.css'], directives: [AppComponent] });

7
如何在angular2中调用另一个组件函数
我有两个组件,如下所示,我想从另一个组件中调用一个函数。这两个组件都包含在使用指令的第三个父组件中。 组件1: @component( selector:'com1' ) export class com1{ function1(){...} } 组件2: @component( selector:'com2' ) export class com2{ function2(){... // i want to call function 1 from com1 here } } 我已经尝试过使用@input,@output但是我不知道该如何使用以及如何调用该函数,任何人都可以帮忙吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.