在Angular 8或9中,在编译之前获取模板HTML可以使用HttpClient
模块来获取模板文件的内容。下面是一个解决方法的代码示例:
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
@Injectable({
providedIn: 'root'
})
export class TemplateService {
constructor(private http: HttpClient) { }
getTemplate(templateUrl: string): Promise {
return this.http.get(templateUrl, { responseType: 'text' })
.toPromise()
.then(response => response);
}
}
TemplateService
来获取模板HTML文件的内容:import { Component, OnInit } from '@angular/core';
import { TemplateService } from './template.service';
@Component({
selector: 'app-my-component',
template: '',
})
export class MyComponent implements OnInit {
constructor(private templateService: TemplateService) { }
ngOnInit() {
const templateUrl = 'path/to/template.html';
this.templateService.getTemplate(templateUrl)
.then(template => {
// 在这里可以访问到模板HTML的内容
console.log(template);
});
}
}
这样,你就可以在编译之前获取到模板HTML的内容,并进行相应的操作。注意,TemplateService
需要在模块中进行注册,以便在组件中使用。