微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – 在try块中分配值的最佳方法

let x;
try {
  x = ...;
} catch (e) { 
  return
}

// rest of the code that uses `x`
const y = x + ...;

x只分配了一次,但我必须使用let而不是const.

另一种方式是:

try {
  const x = ...;
  // rest of the code that uses `x`
  const y = x + ...;
} catch (e) { 
  return
}

但是,这会增加嵌套并使得不清楚什么会引发错误.

有没有更好的办法?

如果尝试失败,我不必关心x的值,因为我将在catch块中返回.
我也不想将其解析为单独的函数.

解决方法

功能 – 使用带有三个回调的辅助函数
function Try(attempt,onSuccess,onFailure) {
  try {
    var res = attempt();
  } catch(err) {
    return onFailure(err);
  }
  return onSuccess(res);
}

这允许你写

return Try(() => …,x => {
  // rest of the code that uses `x`
  const y = x + …;
},e => void e);

您还可以使用表示此控制流的数据结构,如Result monad(也称为Either monad):

class Result {
  constructor(go) {
    this.go = go;
  }
  static Ok(v) {
    return new this((onSuccess,_) => onSuccess(v));
  }
  static Err(r) {
    return new this((_,onFailure) => onFailure(v));
  }
  map(f) {
    return this.go(v => Result.Ok(f(v)),r => Result.Err(r));
  }
  chain(f) {
    return this.go(v => f(v),r => Result.Err(r));
  }
  unwrap() {
    return this.go(v => v,r => { throw r; });
  }
}
function Try(attempt) {
  try {
    var res = attempt();
    return Result.Ok(res);
  } catch(e) {
    return Result.Err(e);
  }
}

你可以使用它与上面简单的辅助函数非常相似:

return Try(() =>
  … // exceptions in here are caught
).go(x => {
  // rest of the code that uses `x` - exceptions are not caught
  const y = x + …;
},e => void e);

但也有更先进的链接

return Try(() =>
  … // exceptions in here are caught
).chain(x =>
  Try(() =>
    x + … // exceptions in here are caught as well
  )
).map(y =>
  … // exceptions in here are not caught
).unwrap(); // any caught exceptions are re-thrown

原文地址:https://www.jb51.cc/js/158014.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐