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.
当在 ST2 导航视图中触发后退事件时,您如何确定要导航到哪个视图以及我们要导航到哪个视图?
所以我找到了另一种解决方法。我需要知道用于导航的旧视图和新视图,以便我可以更改应用于数据存储的一些过滤器。这就是我所做的,在返回的视图上,我添加了以下代码:
listeners: { deactivate: function() { ... do some stuff ... } }
虽然不是原始问题的解决方案,但这对我来说效果很好。