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 需要而不将其存储到变量中


- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Flexslider 箭头未正确显示 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01