gpt4 book ai didi

javascript - 无法在 Plnkr 中加载 app.component.html

转载 作者:行者123 更新时间:2023-11-30 15:28:00 25 4
gpt4 key购买 nike

Plnkr 链接:https://plnkr.co/edit/910M73kwYKc8xPlSIU57?p=preview

enter image description here

目录:

enter image description here

应用.ts

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { RouterModule } from '@angular/router';

import { routes } from './app.routing';

import { AppComponent } from './app.component';
// import { LoginComponent } from './login/login.component';
// import { AuthService } from './shared/services/auth.service';


@NgModule({
imports: [
BrowserModule,
FormsModule,
RouterModule.forRoot(routes)
],
declarations: [
AppComponent,
// LoginComponent
],
providers: [
// AuthService,
],
bootstrap: [ AppComponent ]
})
export class AppModule {}

应用组件

import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';

@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
ngOnInit() {
console.log('oninit')
}
}

最佳答案

Angular 无法解析 app.component.html 的相对路径。
只需将 ./app.component.html 替换为 src/app.component.html 即可。

import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';

@Component({
selector: 'my-app',
templateUrl: 'src/app.component.html'
})
export class AppComponent implements OnInit {
ngOnInit() {
console.log('oninit')
}
}

还有其他方法可以做到这一点 但是 angular-cliwebpack 自己处理相对路径,这是更可取的。

关于javascript - 无法在 Plnkr 中加载 app.component.html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42674180/

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