Node.js 构造器:新 vm。脚本()方法
原文:https://www . geesforgeks . org/node-js-constructor-new-VM-script-method/
构造器:新虚拟机。Script()方法创建一个新的 vm。脚本对象并编译所述代码,但它不运行代码。而且,编制了 vm。脚本之后可以根据需要运行任意多次。这里,代码没有连接到任何全局对象,而是在每次运行之前连接,只是为了那个特定的运行。
语法:
Constructor: new vm.Script( code, options )
参数:该方法接受两个参数,如上所述,如下所述。
- Code: is the JavaScript code to be compiled.
- option: is an optional parameter, which returns object or string . If it returns a string, it defines the file name.
下面的例子说明了构造函数的使用:新虚拟机。Node.js 中的 Script() :
例 1:
// Node.js program to demonstrate the
// Constructor: new vm.Script() method
// Including vm and util module
const util = require('util');
const vm = require('vm');
// Creating context
const context = {
number: 2
};
// Calling the constructor
const script = new vm.Script('Type = "Int"; number *= 2;');
// Contextifying object
vm.createContext(context);
// Calling runInContext method
script.runInContext(context);
// Displays output
console.log(context);
输出:
{ number: 4, Type: 'Int' }
例 2:
// Node.js program to demonstrate the
// Constructor: new vm.Script() method
// Including vm and util module
const util = require('util');
const vm = require('vm');
// Creating context
const context = {
value: 1.0
};
// Calling the constructor
const script = new vm.Script('Type = "Float"; value += 2*0.1;');
// Contextifying object
vm.createContext(context);
// Calling runInContext method
script.runInContext(context);
// Displays output
console.log(context);
输出:
{ value: 1.2, Type: 'Float' }
参考:https://nodejs . org/API/VM . html # VM _ constructor _ new _ VM _ script _ code _ options
版权属于:月萌API www.moonapi.com,转载请注明出处