我在 VS Code 中使用 Node.js 14.15.1,当我尝试使用可选链接运算符时它显示错误。除了 Express,我没有使用任何其他依赖项。这行代码相当简单。
if(something.includes(String(anotherThing.value)?.trim())) {
// do something
}
您能否阐明可能的解决方法?
我在 VS Code 中使用 Node.js 14.15.1,当我尝试使用可选链接运算符时它显示错误。除了 Express,我没有使用任何其他依赖项。这行代码相当简单。
if(something.includes(String(anotherThing.value)?.trim())) {
// do something
}
您能否阐明可能的解决方法?