标签: angular2-template angular2-forms angular2-directives
在我的标题组件中,我声明了一个变量this.userFullName = this.globalService.userFullName;&然后我在我的标题模板中使用此变量userFullName。现在,当我从另一个组件(Counselor Component)this.globalService.userFullName = "Rob"更改我的全局变量 userFullName 时,此更改不会反映到标题模板中。为什么?任何实现此目的的替代解决方案也会有所帮助。
this.userFullName = this.globalService.userFullName;
this.globalService.userFullName = "Rob"