gpt4 book ai didi

angularjs - 错误 : [$injector:unpr] Unknown provider - while migrating AngularJS1 to Angular6

转载 作者:行者123 更新时间:2023-12-05 07:18:24 26 4
gpt4 key购买 nike

我正在尝试将用 AngularJS1 编写的组件升级到 Angular6。在我的示例中,我通过扩展放置在文件夹“directive-wrappers”下的“UpgradeComponent”来为所有现有的 AngularJS1 组件提供包装器。

加载应用程序时,我收到控制台错误

Error: [$injector:unpr] Unknown provider: testDirective2DirectiveProvider <- testDirective2Directive
https://errors.angularjs.org/1.7.8/$injector/unpr?p0=testDirective2DirectiveProvider%20%3C-%20testDirective2Directive
at eval (angular.js:138)
at eval (angular.js:4924)
at Object.getService [as get] (angular.js:5084)
at eval (angular.js:4929)
at Object.getService [as get] (angular.js:5084)
at Function.UpgradeHelper.getDirective (upgrade_helper.ts:56)
at new UpgradeHelper (upgrade_helper.ts:52)
at TestDirective2Wrapper.UpgradeComponent (upgrade_component.ts:106)
at new TestDirective2Wrapper (TestDirective2Wrapper.ts:27)
at createClass (provider.ts:265) "<app-root _nghost-c0="">"

enter image description here

为了在线模拟相同的应用程序,我在 stackblitz 中创建了相同的 angularjs 指令及其包装器。

最佳答案

docsSampleDirective.js 文件存在问题。

当您已经在 app.module.js< 中初始化了 testApp 模块时,您已经在那里第二次初始化了 AngularJS 模块 文件。只需从那里摆脱依赖数组:

angular
.module("testApp")
.controller("Controller", [
"$scope",
function($scope) {
$scope.customer = {
name: "Naomi",
address: "1600 Amphitheatre"
};
}
])
.directive("docsSimpleDirective", function() {
return {
template: "Name: {{customer.name}} Address: {{customer.address}}"
};
});

Here's a Working Sample StackBlitz for your ref.

关于angularjs - 错误 : [$injector:unpr] Unknown provider - while migrating AngularJS1 to Angular6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58295995/

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