如何在ionic 4 Angular 7中从另一个页面调用页面的功能
我正在尝试从另一个页面执行页面的功能,我想在该功能中传递参数。 请帮助我。
答案 0 :(得分:0)
如果我理解正确,则想在另一个组件中调用一个组件的函数。您可以做的就是导入要使用其功能的组件,如下所示:
select
year(date) as year_A,
month(date) as month_A,
count(*) as number_A,
sum(state = 0) as number_B,
sum(state = 1) as number_C
FROM A_transaction
GROUP BY year_A, month_A
然后,创建此组件的实例:
import { MyComponent } from './path/to/component' ;
最后,调用所需的函数:
constructor(private myComponentInstance: MyComponent) { }