gpt4 book ai didi

angularjs - Angular1 <-> Angular2 Bridge 访问 $rootScope

转载 作者:太空狗 更新时间:2023-10-29 17:26:45 26 4
gpt4 key购买 nike

我使用以下升级/降级桥 https://angular.io/docs/ts/latest/guide/upgrade.html在一个应用程序中同时使用 Angular1Angular2

我的问题是是否有可能从 Angular2 服务访问 Angular1 $rootScope。明确地说,我不是在问 Angular2$rootScope 的等价物是什么。

最佳答案

只需要:

@Injectable()    
class ExampleAngular2Service {
constructor(@Inject('$rootScope') private _rootScope: IRootScopeService) {}
}

您无需升级任何东西,它默认存在。参见 http://www.spaprogrammer.com/2017/03/inject-rootscope-into-angular-2.html

使用现在的 recommended 在 Angular 6 Hybrid 上进行测试:

import { UpgradeModule } from '@angular/upgrade/static';

您也可以使用 $scope

@Inject('$scope') private $scope: IScope

关于angularjs - Angular1 <-> Angular2 Bridge 访问 $rootScope,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39619486/

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