可以使用以下方法来判断Types
cr
i
pt
中的空值:
判断字符串是否为空的方法:
if(str === '' || str.trim().length === 0)
let str: string = '';
if(str === '' || str.trim().length === 0){
console.log('The string is em
pt
y');
判断数字类型是否为空的方法:
if(num === null || num === undefined)
let num: number = null;
if(num === null || num === undefined){
console.log('The number is em
pt
y');
判断对象类型是否为空的方法:
if(obj === null || obj === undefined || Object.keys(obj).length === 0)
let obj: any = {};
if(obj === null || obj === undefined || Object.keys(obj).length === 0){
console.log('The object is em
pt
y');
这些方法都可以帮助我们判断Types
cr
i
pt
中的空值。