- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
我需要将数据从一个组件传递到另一个依赖组件。需要将数据从A组件传递到B组件
A.component.ts
enter image description here
service. ts 'enter image description here----〉能够从A.组件和updateCondition方法的console.log中获取数据
B.component.ts
我需要service.ts中的goToHome和goToDashboard的数据
任何建议
能够在updateCondition中提取数据,但不能在方法外部访问。
1条答案
按热度按时间vc6uscn91#
如果组件B在组件A的内部(我假设是因为,正如您所说的,两者相互依赖),您可以使用"输入和输出概念"将值直接从A传递到B。
例如,
组件A HTML:
组分A TS:
组分B TS:
在组件B TS中,使用这两个输入值和Angular 的变化检测将照顾其余的。如果我错过了什么,请让我知道。