打字稿,'NodeListOf<Element>'不是数组类型或字符串类型
Converting my JS to TS strict mode.
The following syntax looks fine to me but TS is complaining in the for
loop on allSubMenus
with:
[ts] Type 'NodeListOf<Element>' is not an array type or a string type.
What am I missing?
function subAct(target:Node){
const allSubMenus : NodeListOf<Element> = document.querySelectorAll('.subMenuItems')
for (const sub of allSubMenus){
sub.classList.remove('active')
}
}
解决方案
You need to set the target
compiler option to es6
or higher for NodeListOf<T>
to be iterable.
相关文章