当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。