JS判断字符串是否为json字符串

业务场景:

form表单输入框需要进行json校验,确保数据为json字符串,通过使用try/catch和JSON.parse判断是否为json字符串,方法如下:

const isJsonString = str => {
  try {
    const toObj = JSON.parse(str) // json字符串转对象
    /*
        判断条件 1. 排除null可能性 
                 2. 确保数据是对象或数组
    */
    if (toObj && typeof toObj === 'object') { 
      return true
    }
  } catch {}
  return false
}

在 antd4 表单中使用上述方法:

const jsonValidate = (_, value) => {
  return new Promise((resolve, reject) => {
    if (value?.trim()) {
      const isJson = isJsonString(value)
      if (isJson) {
        resolve(isJson)
      }
    }
    reject(new Error('请输入正确的json字符串'))
  })
}




// 组件中使用

你可能感兴趣的:(JavaScript,javascript,json,前端,react)