我正在将一个大的 angular.js 应用程序(使用 ui-router)一点一点地迁移到 angular,我选择使用 angular.js 应用程序作为基础,一次迁移一个不同的路由,这样一旦我'完成我立即将所有内容切换为角度。
这些是我遵循的步骤:
在我的 main.ts 文件中引导 angular.js 应用程序:
export function bootstrapAngular(extra: StaticProvider[]): any {
setAngularJSGlobal(angular);
if (environment.production) {
enableProdMode();
}
return platformBrowserDynamic(extra)
.bootstrapModule(AppModule)
.catch(err => console.log(err));
}
const downgraded = angular
.module('downgraded', [downgradeModule(bootstrapAngular)])
.directive('appRoot', downgradeComponent({ component: RootComponent, propagateDigest: false }))
;
angular.bootstrap(document, ['app', downgraded.name]);
在我的 index.html 里面
<app id="app"></app>
这工作正常。
在我的主要 angular.js 组件中,我添加了降级的主要 Angular 组件的标签:
<div class="app__view" id="appContent">
<ui-view></ui-view>
<app-root></app-root>
</div>
这就是我的主模块的配置方式
const COMPONENTS = [
TestComponent,
RootComponent,
];
@NgModule({
declarations: COMPONENTS,
imports: [
BrowserModule,
NxModule.forRoot(),
RouterModule.forRoot(routes, {
initialNavigation: 'enabled',
useHash: true
})
],
providers: [
{ provide: APP_BASE_HREF, useValue: '/' }
],
entryComponents: COMPONENTS,
exports: COMPONENTS
})
export class AppModule {
ngDoBootstrap(): void { }
}
到目前为止一切正常。我可以在 angular.js 应用程序中看到我的 angular 组件。
当我将其添加到我的主根组件时,问题就出现了,即使路由匹配,我也可以看到路由器插座渲染,但旁边没有任何内容。
export const routes: Route[] = [
{ path: 'dashboard', component: TestComponent }
];
当我将浏览器指向/#/dashboard时,这是我看到的路由器跟踪:
并且测试组件只是不渲染。
我需要一些帮助,想不出其他可以尝试的方法。