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


Node.js util.types.isProxy()用法及代碼示例


util.types.isProxy()方法是util模塊的內置應用程序編程接口,其主要設計用於滿足Node.js自己的內部API的需求。 util.types.isProxy()方法用於檢查給定值是否是代理實例。

用法:

util.types.isProxy( value )

參數:該函數接受上述和以下描述的單個參數:



  • value:它是將檢查代理實例的值。

返回值:它返回一個布爾值,即如果傳遞的值是代理,則返回true,否則返回false。

以下程序說明了util.types.isProxy()方法:

範例1:

// Node.js program to demonstrate the 
// util.types.isProxy() method 
  
// Import the util module 
const util = require('util'); 
  
// Creating a target 
const target = {}; 
  
// Checking the proxy instance 
let proxyObj = new Proxy(target, {}); 
console.log(proxyObj); 
  
isProxy = util.types.isProxy(proxyObj); 
console.log("Object is a proxy instance:", isProxy); 
  
// Checking a normal object 
normalObj = {a:"1", b:"2"}; 
console.log(normalObj); 
  
isProxy = util.types.isProxy(normalObj); 
console.log("Object is a proxy instance:", isProxy);

輸出:

{}
Object is a proxy instance:true
{ a:'1', b:'2' }
Object is a proxy instance:false

範例2:

// Node.js program to demonstrate the 
// util.types.isProxy() method 
  
// Import the util module 
const util = require('util'); 
  
// Creating a target 
const target = {}; 
  
// Checking the proxy object 
console.log("Object is a proxy instance:"); 
console.log(util.types.isProxy(new Proxy(target, {}))); 
  
// Checking a normal object 
console.log("Object is a proxy instance:"); 
console.log(util.types.isProxy(new Object()));

輸出:

Object is a proxy instance:
true
Object is a proxy instance:
false

參考: https://nodejs.org/api/util.html#util_util_types_isproxy_value




相關用法


注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 Node.js | util.types.isProxy() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。