我正在尝试在angularjs中使用我的ng2指令,但无法使其工作。我已经看到downgradeComponent对angularjs指令使用了限制:'E',这意味着它仅限于元素。任何人都知道如何处理这个问题?
我尝试在角度js中使用我的指令,但它没有用。 我正在使用UpgradeModule进行混合引导。
这是我的指示。
HTTP Status 404 - /ContactApp/t/t1/hi
type Status report
message /ContactApp/t/t1/hi
description The requested resource is not available.
Apache Tomcat/7.0.47
我尝试在AngularJS中使用它作为属性(尝试将其用作[test-directive]和test-directive。
我在这里遗漏了什么吗?因为我在网上搜索过,并没有找到很多关于这个问题的信息。
答案 0 :(得分:0)
正如我所看到的,upgradeAdapter
仅在downgradeNg2Provider
和downgradeNg2Component
中提供,而且downgradeNg2Component
总是使用" E"。 (https://github.com/angular/angular/blob/master/packages/upgrade/src/common/downgrade_component.ts#L70)
看看Downgrade NG2 Directive to AngularJS。我还没有对它进行过测试,但该问题的作者说,没有必要降级指令,你可以开箱即用。