gpt4 book ai didi

angularjs - 如何使用 $rootScope.$broadcast 定位特定的 Ionic View

转载 作者:行者123 更新时间:2023-12-01 06:26:54 28 4
gpt4 key购买 nike

使用 Ionic,调用 $rootScope.$broadcast("$ionicView.enter") 将触发所有具有 $ionicView.enter 事件处理程序的 subview 。

如何缩小范围以针对特定 View 定位处理程序?

最佳答案

您尚未提供任何代码示例,但听起来您所描述的内容不需要用特定数据触发事件,而是用特定数据监听事件。

也许这个片段可以帮助你:

$rootScope.$on( "$ionicView.enter", function( scopes, states ) {
//here's an example of storing network error state in rootscope
//and some random important state that requires your data to be refreshed

if( $rootScope.networkErrorOccurred && states.stateName == "myImportantState" ) {
//refresh data due to network error code goes here
}
});

关于angularjs - 如何使用 $rootScope.$broadcast 定位特定的 Ionic View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27490269/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com