中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何格式化字符串
微信扫码分享
static toStr(source: string | null | undefined, defaultValue = "") { if (source == null || source == undefined) { return defaultValue; } return String(source); }