new vm.Script(code[, options])
-
code<string> 要编译的 JavaScript 代码。¥
code<string> The JavaScript code to compile. -
-
filename<string> 指定此脚本生成的堆栈跟踪中使用的文件名。默认值:'evalmachine.<anonymous>'。¥
filename<string> Specifies the filename used in stack traces produced by this script. Default:'evalmachine.<anonymous>'. -
lineOffset<number> 指定在此脚本生成的堆栈跟踪中显示的行号偏移量。默认值:0。¥
lineOffset<number> Specifies the line number offset that is displayed in stack traces produced by this script. Default:0. -
columnOffset<number> 指定在此脚本生成的堆栈跟踪中显示的第一行列号偏移量。默认值:0。¥
columnOffset<number> Specifies the first-line column number offset that is displayed in stack traces produced by this script. Default:0. -
cachedData<Buffer> | <TypedArray> | <DataView> 为所提供的源提供可选的Buffer或TypedArray或DataView,其中包含 V8 的代码缓存数据。当提供时,cachedDataRejected值将设置为true或false,具体取决于 V8 对数据的接受程度。¥
cachedData<Buffer> | <TypedArray> | <DataView> Provides an optionalBufferorTypedArray, orDataViewwith V8's code cache data for the supplied source. When supplied, thecachedDataRejectedvalue will be set to eithertrueorfalsedepending on acceptance of the data by V8. -
produceCachedData<boolean> 当true且没有cachedData存在时,则 V8 将尝试为code生成代码缓存数据。当成功后,会生成带有 V8 代码缓存数据的Buffer并存储在返回的vm.Script实例的cachedData属性中。cachedDataProduced值将设置为true或false,这取决于代码缓存数据是否成功生成。此选项已弃用,取而代之的是script.createCachedData()。默认值:false。¥
produceCachedData<boolean> Whentrueand nocachedDatais present, V8 will attempt to produce code cache data forcode. Upon success, aBufferwith V8's code cache data will be produced and stored in thecachedDataproperty of the returnedvm.Scriptinstance. ThecachedDataProducedvalue will be set to eithertrueorfalsedepending on whether code cache data is produced successfully. This option is deprecated in favor ofscript.createCachedData(). Default:false. -
importModuleDynamically<Function> 在调用import()时在评估此模块期间调用。如果未指定此选项,则调用import()将使用ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING拒绝。此选项是实验模块 API 的一部分。不建议在生产环境中使用它。如果未设置--experimental-vm-modules,则该回调将被忽略,对import()的调用将被拒绝并返回ERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG。¥
importModuleDynamically<Function> Called during evaluation of this module whenimport()is called. If this option is not specified, calls toimport()will reject withERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING. This option is part of the experimental modules API. We do not recommend using it in a production environment. If--experimental-vm-modulesisn't set, this callback will be ignored and calls toimport()will reject withERR_VM_DYNAMIC_IMPORT_CALLBACK_MISSING_FLAG.-
specifier<string> 说明符传递给import()¥
specifier<string> specifier passed toimport() -
script<vm.Script> -
importAttributes<Object> 传给optionsExpression可选参数的"with"值,如果没有提供值,则为空对象。¥
importAttributes<Object> The"with"value passed to theoptionsExpressionoptional parameter, or an empty object if no value was provided. -
返回:<Module Namespace Object> | <vm.Module> 建议返回
vm.Module以利用错误跟踪,并避免包含then函数导出的命名空间出现问题。¥Returns: <Module Namespace Object> | <vm.Module> Returning a
vm.Moduleis recommended in order to take advantage of error tracking, and to avoid issues with namespaces that containthenfunction exports.
-
-
如果 options 是字符串,则指定文件名。
¥If options is a string, then it specifies the filename.
创建新的 vm.Script 对象编译 code 但不运行它。编译后的 vm.Script 可以多次运行。code 没有绑定到任何全局对象;相反,它在每次运行之前绑定,仅针对该运行。
¥Creating a new vm.Script object compiles code but does not run it. The
compiled vm.Script can be run later multiple times. The code is not bound to
any global object; rather, it is bound before each run, just for that run.