Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

这段代码会提示错误VM151:2 Uncaught TypeError: Cannot redefine property: a at Function.defineProperty,为什么不是输出a,b,c?

    let value = "a";
    Object.defineProperty(this, "a", {
      get() {
        let result = value;
        if (value === "a") {
          value = "b";
        } else if (value === "b") {
          value = "c";
        }
        return result;
      },
    });
    console.log(a,a,a);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.8k views
Welcome To Ask or Share your Answers For Others

1 Answer

这个报错是因为你执行了两次(或以上)这段代码。刷新后重新执行就好了。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...