仅需要从所需的 commonjs 模块中导出特定内容
only require specific exports from a required commonjs module
在 es6 中我可以这样做:
const { findIndex, last } from 'lodash';
我可以在 commonjs 中使用 require 做同样的事情吗?
你可以选择需要的部分lodash,lodash docs page
上有例子
例如
const at = require('lodash/at');
是的,您可以在节点 v6 和更高版本中以相同的方式使用解构。更多信息在这里:Destructuring in Node.JS
示例:
const { findIndex, last } = require('lodash');
在 es6 中我可以这样做:
const { findIndex, last } from 'lodash';
我可以在 commonjs 中使用 require 做同样的事情吗?
你可以选择需要的部分lodash,lodash docs page
上有例子例如
const at = require('lodash/at');
是的,您可以在节点 v6 和更高版本中以相同的方式使用解构。更多信息在这里:Destructuring in Node.JS
示例:
const { findIndex, last } = require('lodash');