在Angular组件中获取<html>标签

时间:2019-12-28 11:32:05

标签: javascript angular typescript

可以通过注入<body>来在角组件中获取

<head>DOCUMENT标签,就像这样:

import { DOCUMENT } from '@angular/common';
import { Inject } from '@angular/core';

export class TestComponent {
  constructor(
    @Inject(DOCUMENT) private document: Document
  )

  // get <head>
  // this.document.head

  // get <body>
  // this.document.body
}

但是可以在Angular组件中获得<html>标签吗?

0 个答案:

没有答案