vm.runInThisContext()方法编译代码,在当前全局变量的上下文中运行代码,然后返回输出。而且,正在运行的代码无法访问本地作用域,但可以访问当前的全局对象。
用法:
vm.runInThisContext( code, options )
参数:此方法接受两个参数,如avobe所述,如下所述:
- code:它是要编译和运行的JavaScript代码。
- options:它是一个可选参数,它返回一个对象或字符串,如果它是一个字符串,则它定义了返回字符串的文件名。
返回值:它返回脚本中执行的最后一条语句的结果。
以下示例说明了Node.js中vm.runInThisContext()方法的使用:
范例1:
// Node.js program to demonstrate the
// runInThisContext() method
// Including vm module
const vm = require('vm');
// Declaring local variable
let localVar = 'GfG';
// Calling runInThisContext method
const vmresult =
vm.runInThisContext('localVar = "Geeks";');
// Prints output for vmresult
console.log(`vmresult:'${vmresult}',
localVar:'${localVar}'`);
// Constructing eval
const evalresult = eval('localVar = "CS";');
// Prints output for evalresult
console.log(`evalresult:'${evalresult}',
localVar:'${localVar}'`);
输出:因此,vm.runInThisContext()方法无法访问本地范围,因此,localVar在此处保持不变。
vmresult:'Geeks', localVar:'GfG' evalresult:'CS', localVar:'GfG'
范例2:
// Node.js program to demonstrate the
// runInThisContext() method
// Including vm module
const vm = require('vm');
// Declaring local variable and assigning
// it an integer
let localVar = 6;
// Calling runInThisContext method
const vmresult =
vm.runInThisContext('localVar = 9;');
// Prints output for vmresult
console.log(`vmresult:'${vmresult}',
localVar:'${localVar}'`);
// Constructing eval
const evalresult = eval('localVar = 11;');
// Prints output for evalresult
console.log(`evalresult:'${evalresult}',
localVar:'${localVar}'`);
输出:
vmresult:'9', localVar:'6' evalresult:'11', localVar:'6'
参考: https://nodejs.org/api/vm.html#vm_vm_runinthiscontext_code_options
相关用法
- Node.js GM drawRectangle()用法及代码示例
- Node.js GM minify()用法及代码示例
- Node.js GM magnify()用法及代码示例
- Node.js GM whiteThreshold()用法及代码示例
- Node.js GM whitePoint()用法及代码示例
- Node.js GM write()用法及代码示例
- Node.js GM drawBezier()用法及代码示例
- Node.js GM drawPolyline()用法及代码示例
- Node.js GM drawArc()用法及代码示例
- Node.js GM drawLine()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Node.js | vm.runInThisContext() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。