在 Angular 中,为了安全起见,不允许在 HTML 模板中直接嵌入 Javascript 代码。如果确实需要在 HTML 中执行 Javascript,可以使用以下两种方法:
示例代码:
import { Directive, ElementRef, OnInit } from '@angular/core';
@Directive({ selector: '[executeScript]' }) export class ExecuteScriptDirective implements OnInit { constructor(private elementRef: ElementRef) {}
ngOnInit(): void { const script = this.elementRef.nativeElement.textContent; eval(script); } }
使用:
示例代码:
import { Component } from '@angular/core';
@Component({
selector: 'app-hello-world',
template:
})
export class HelloWorldComponent {
ngAfterViewInit() {
const script = document.createElement('script');
script.textContent = 'console.log("Hello, world!");';
this.scriptContainer.nativeElement.appendChild(script);
}
}
使用: