gpt4 book ai didi

javascript - Chrome 上奇怪的 ES6 代理行为

转载 作者:行者123 更新时间:2023-12-03 07:58:29 26 4
gpt4 key购买 nike

我正在运行这段简单的代码:

var handler = {
get(target, prop, proxy) {
console.log('get', prop);
return target[prop];
}
};

var proxy = new Proxy({}, handler);

console.log('the proxy is', proxy);

在 Firefox [nightly 46] 上,我得到了预期的输出:

the proxy is Object {  }

但是,在 Google Chrome [canary 49] 上,会记录一些奇怪的事情:

the proxy is undefined {}
get splice
get splice
get __proto__

知道这里发生了什么吗?

最佳答案

Chrome 尚不支持(代理) https://kangax.github.io/compat-table/es6/

关于javascript - Chrome 上奇怪的 ES6 代理行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34695993/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com