當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript handler.setPrototypeOf()用法及代碼示例


如果 [[Prototype]] 成功更改,handler.setPrototypeOf 方法返回一個布爾值 true。否則,它將返回false。它是 Object.setPrototypeOf() 的陷阱。

用法

setPrototypeOf:function(target, prototype)

參數

target:目標對象。

prototype:對象的新原型或為空。

返回值

返回布爾類型值。

瀏覽器支持

Chrome 兼容性未知
Edge 兼容性未知
Firefox 49
Opera 兼容性未知

例子1

<script>
var pro = { f:13}
var proxy = new Proxy(pro, {
  setPrototypeOf(target, newProto) {
 return newPrototype in target;
  }
});
document.writeln('f' in proxy);
//expected output:true
</script>

輸出:

true

例子2

<script>
var soo={
  foo:1
}
var proxy = new Proxy(soo, {
  setPrototypeOf(target, newProto) {
   
  }
});
document.writeln('a' in proxy); 
//expected output:false
</script>

輸出:

false

例子3

<script>
var xyz = new Proxy({},  {
  setPrototypeOf(target, newProto) {
    if(key == "a") return true;
      return ;false
    }
  }
)	
var first= ("f" in xyz)
var last = ("g" in xyz)
document.write(""+first)
//expected output:false
document.write('<br/>');
document.write("" +last)
//expected output:false
</script>

輸出:

false
false






相關用法


注:本文由純淨天空篩選整理自 JavaScript handler.setPrototypeOf() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。