我想升级ng2组件以在ng2组件中使用.
如果我只使用模板字符串ng1组件,要升级,它的工作原理.但是,如果我切换到使用templateUrl,应用程序崩溃并给我这个错误:
angular.js:13920 Error: loading directive templates asynchronously is not supported at RemoteUrlComponent.UpgradeComponent.compileTemplate (upgrade-static.umd.js:720) at RemoteUrlComponent.UpgradeComponent (upgrade-static.umd.js:521) at new RemoteUrlComponent (remote-url.component.ts:11) at new Wrapper_RemoteUrlComponent (wrapper.ngfactory.js:7) at View_AppComponent1.createInternal (component.ngfactory.js:73) at View_AppComponent1.AppView.create (core.umd.js:12262) at TemplateRef_.createEmbeddedView (core.umd.js:9320) at ViewContainerRef_.createEmbeddedView (core.umd.js:9552) at eval (common.umd.js:1670) at DefaultIterableDiffer.forEachOperation (core.umd.js:4653)
这是一个证明我的问题的插件:
我找到了一个非常便宜的解决方案.
原文链接:https://www.f2er.com/angularjs/142201.html只需使用template:require(‘./ remote-url.component.html’)而不是templateUrl:’./ remote-url.component.html’,它应该可以正常工作!