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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。