我正在尝试将用 AngularJS1 编写的组件升级到 Angular6。在我的示例中,我正在通过扩展放置在文件夹“”下的“ UpgradeComponent ”来为所有现有的 AngularJS1 组件提供包装器。directive-wrappers
我已经在本地编写了这个应用程序,它适用于 2 个组件TestDirectiveWrapper
和TestDirective2Wrapper
.
但是当我包含第三个组件TestDirective3Wrapper
时,在加载应用程序时出现控制台错误
angular.min.js:127 Error: [$injector:unpr] http://errors.angularjs.org/1.7.5/$injector/unpr?p0=testDirective3DirectiveProvider%20%3C-%20testDirective3Directive
at angular.min.js:7
at angular.min.js:46
at Object.d [as get] (angular.min.js:43)
at angular.min.js:46
at Object.d [as get] (angular.min.js:43)
at Function.push../node_modules/@angular/upgrade/fesm5/static.js.UpgradeHelper.getDirective (static.js:872)
at new UpgradeHelper (static.js:869)
at TestDirective3Wrapper.UpgradeComponent (static.js:1170)
at new TestDirective3Wrapper (TestDirective3Wrapper.ts:9)
at createClass (core.js:9296) "<app-root _nghost-c0="">"
为了在线模拟相同的应用程序,我在 stackblitz 中创建了相同的angularjs指令及其包装器,但在这里我得到了一个不同的错误。
谁能帮我解决这个问题并让我加载所有 3 个组件?