Node.js require without storing it into a variable(Node.js 需要而不将其存储到变量中)
问题描述
我有以下代码片段,它在其上下文中工作.
I have the following code snippet and it works in its context.
"use strict";
require('chromedriver');
var selenium = require('selenium-webdriver');
var driver = new selenium.Builder()
.forBrowser('chrome')
.build();
我不明白的是这条线:
require('chromedriver');
如果我删除它,我会收到错误:
If i remove it I get an error:
Error: The ChromeDriver could not be found on the current PATH. Please download the latest version of the ChromeDriver from http://chromedriver.storage.googleapis.com/index.html and ensure it can be found on your PATH.
所以它做了一些事情.
我了解 var chromedriver = require('chromedriver'); 的作用,到目前为止我只看到过这样使用 require 函数.
I understand what var chromedriver = require('chromedriver'); does and I have only seen the require function being used that way so far.
所以我的问题是:require('chromedriver');
为什么会起作用?
所需的 chromedriver 在哪里结束?
Where does the required chromedriver end up?
如果 require() 函数没有将返回值保存到变量中,一般会发生什么?
What happens in genereal if the require() function does not save its return into a variable?
推荐答案
在模块上调用 require 实际上会执行模块中的任何代码.在大多数情况下,模块会导出一个或多个函数或对象,您希望将其存储在变量中.但是如果你要写这样的东西:
Calling the require on the module actually executes whatever code is in the module. In most cases, the module exports one or more functions or an object, which you want to store in a variable. But if you were to write something like:
for (var i = 0;i < 100; i++){
console.log("I've been called %d times", i);
}
在 .js 文件中,然后在节点程序中 require 该文件,您将在控制台中添加 100 行,而没有其他任何事情发生.
in a .js file and then require that file in a node program, you'd get 100 lines added to your console and nothing else happening.
这篇关于Node.js 需要而不将其存储到变量中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Node.js 需要而不将其存储到变量中
基础教程推荐
- 检查 HTML5 拖放文件类型 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
