Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个组件 A 和 B。A 有一个公共函数,即“function_A()”。
我如何在不使其成为静态函数的情况下将其称为 B 形式?
组件实例基本上是一个对象。因此,您应该始终让组件相互交互,各种 OOP 范式建议对象应该如何交互。
至于视图组件:尽可能避免交互,并尝试通过 MV* (MVC, MVP, MVVM, ...) 模式来实现您的应用程序。起初这似乎更复杂。但是这些设计方法会随着项目的规模和生命周期而扩展。让对象知道并做太多,不是。