Skip to content

!. 断言操作符

断言某个变量对象不会是 null/undefined,告诉编辑器停止报错。

js
// 断言后端返回的肯定有data属性
const data = responese!.data;