如何在Angular2中使用另一个组件中的变量 [英] How to use a variable from a component in another in Angular2

查看:13
本文介绍了如何在Angular2中使用另一个组件中的变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I was wondering if it is possible to use variable values from one component into another one without having to use the template of the first one, just need the value of the variable nothing else. Is it possible?

解决方案

Yes possible, you can use the @Input() method or use write get method like below

export class Demo {
    const sum = 10;

    get SumValue() {
        return this.sum;
    }
}


import-->Demo

export class Demo2 {
   private sum: number;
   this.sum = Demo.SumValue();
}

这篇关于如何在Angular2中使用另一个组件中的变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆