1

我用 TypeScript 写了一个小函数来级联 React 和 React Native 中的错误:

/**
 * Function that takes an error and trow an enriched error
 * @param error the original error
 * @param func the name of the function trowing the error
 * @param params the parameters passer to the function
 * @param custom a custom message to add*
 * @returns an enriched error
 */
const throwR = (error: Error, func?: string, params?: any, custom?: string) => {
  // Parse params in an human readable form
  let parsedParams: string = ''
  if (params && typeof params === 'object') {
    try {
      parsedParams = JSON.stringify(params)
    } catch (err) {
      parsedParams = `${params.toString()} (JSON.stringify returned: ${err})`
    }
  } else {
    try {
      parsedParams = params.toString()
    } catch (err) {
      parsedParams = `<params.toString(): ${err}>`
    }
  }

  // Handle the case where no error message is provided
  if (!error) {
    try {
      console.log(`on ${func}(${parsedParams})${' ' + custom}: No error message provided to throwR`)
    } catch (err) {
      console.log(`No error message provided to throwR and unable to build this message: ${err}`)
    }
  }

  // build the error message
  let message: string = ''
  try {
    message = `on ${func}(${parsedParams})${' ' + custom}: ${error}`
  } catch (err) {
    message = `${error} (could not build enriched message: ${err})`
  }

  // build the new error
  const newError = new Error(message)

  // add the original error name
  try {
    newError.name = error.name
  } catch (err) {
    console.log(`on throwR, could not add a name to the error: ${error}`)
  }

  // by the end, throw the error
  throw newError
}

export default throwR

然后我将它用于:

const myFunction(params) => {
  try {
    // potentially faulty code
  } catch (error) {
    throwR(error, 'myFunction', params, 'custom message')
  }
}

我在论坛上看到大多数人当时都在使用自定义错误类:

const myFunction(params) => {
  try {
    // potentially faulty code
  } catch (error) {
    throw new CustomError(error, customParameter)
  }
}

我是初学者,还不太了解每种方法的含义。我想避免一个很大的陷阱,这意味着我需要重构我的所有代码。

您能否向我解释每种方法的含义,并为我指出自定义错误和级联错误的正确方法?

谢谢

4

0 回答 0