无法在Angular 4中获取innerText

时间:2018-02-14 07:18:45

标签: javascript angular typescript angular5

HTML部分

<body>
  <div><span>Hello how are you</span></div>
  <div><span>Some random text</span></div>
  <div>This is more text</div>
</body>

打字稿部分

someMethod() {
  const allDivs = document.querySelectorAll('div');
  const arrayAllDivs = Array.from(allDivs);
  const allText = arrayAllDivs.map(divs => divs.innerText);
  console.log(allText);
}

虽然我能够在控制台中记录所有这些div的innerText。我收到错误:错误TS2339: Property&#39; innerText&#39;类型&#39; {}&#39;上不存在。如何解决此错误,因为这会破坏构建。

0 个答案:

没有答案