コンポーネントは次のように定義されています:
import {Component} from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.less']
})
export class AppComponent {
}
「app.component.html」ではなく、特定のコンポーネントを、「htm.app.component.htm」という拡張子の付いたファイルでロードしたい
@Component({
selector: 'app-root',
templateUrl: './app.component.htm',
styleUrls: ['./app.component.less']
})
なんらかの理由で機能しません:
ERROR in ./app.component.htm 1:0
Module parse failed: Unexpected token (1:0)
You may need an appropriate loader to handle this file type.
<p>
app component works!
</p>
「wdm」: Failed to compile.
htmファイルをロードする方法を教えてください。私はWebpackでブートストラップする方法があることを知っています。ng-serve\ cli angular.jsonの現在のビルドを維持したいと思います!
ありがとうございました!
完全なtsファイルをお送りください
—
AliHmede
angularによるとhtmのようなファイルはないので、angularjsを使用している場合にのみ機能するため、サポートしないでください
—
harkesh kumar
.htmlファイルではなく.htmを使用する必要があるのはなぜですか。
—
ethanfar
それは同様行き止まりであるかもしれないので、また....これが表示されますが、8.xで変更されるように、心に留めて
—
Claies