1. 首页
  2. 考试认证
  3. 其它
  4. angularjs shared service $shared服务避免直接使用$rootScope

angularjs shared service $shared服务避免直接使用$rootScope

上传者: 2024-09-25 00:59:21上传 ZIP文件 2.46KB 热度 4次
angularjs共享服务$shared服务避免直接使用$rootScope基本用法获取/设置$shared . set ( 'someKey' , 'hello!' ) $shared . get ( 'someKey' )手表$shared . watch ( 'someKey' , function ( newVal ) { alert ( newVal ) ; } ) ;发射/开启$shared . on ( $scope , "someSignal" , function ( event , data ) { alert ( data ) } ) ; $shared . emit ( "someSignal" , "someMessage" ) ;
用户评论