数据类型工具函数
2024年9月11日小于 1 分钟
判断是否为 JSON 字符串
/**
* 判断是否为JSON字符串
* @param str 字符串
* @returns 判断结果
*/
function isJSON(str: string) {
let result = false;
if (typeof str == "string") {
try {
const obj = JSON.parse(str);
if (typeof obj == "object" && obj) {
result = true;
}
} catch (e) {
result = false;
}
}
return result;
}