翻译或纠错本页面
- Reference >
- mongo Shell Methods >
- Native Methods >
- load()
load()¶
说明¶
- load(file)¶
在当前命令行中载入并执行一个 JavaScript 文件。
The load() method has the following parameter:
Parameter Type Description filename string Specifies the path of a JavaScript file to execute. 文件名可以是相对路径或绝对路径。使用相对路径时,请先用 pwd() 方法确认当前所在目录。
使用 load() 方法执行一个文件后,可以在命令行中引用这个文件中定义的所有方法和变量。
例如¶
Consider the following examples of the load() method:
load("scripts/myjstest.js")
load("/data/db/scripts/myjstest.js")