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.
从文档中我不清楚这些标准 Apollo 订阅和“智能订阅”之间的主要区别是什么。
文档说,在 Vue 组件的 apollo.$subscribe 选项中声明的任何订阅都将是“智能订阅” 。如果基于此停止相关查询,似乎也将自动销毁智能订阅。
但是,如果您调用 $apollo.subscribe(),您只会得到一个标准订阅,它只会在您根据此处的文档销毁组件时被杀死。
破坏标准的这种变化是唯一的区别吗?普通订阅是否支持智能订阅所做的节流和去抖动选项?