Skip to content

Commit

Permalink
docs(api) fixed typo(docschina#1726)
Browse files Browse the repository at this point in the history
  • Loading branch information
xujintai123 committed Nov 4, 2022
1 parent 0f786c4 commit 15435d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/api/module-methods.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ CommonJS 的目标是为浏览器之外的 JavaScript 指定一个生态系统
require(dependency: String);
```

已同步的方式检索其他模块的导出。编译器(compiler)会确保依赖项在输出 bundle 中可用。
以同步的方式检索其他模块的导出。编译器(compiler)会确保依赖项在输出 bundle 中可用。

```javascript
var $ = require('jquery');
Expand All @@ -194,7 +194,7 @@ W> 以异步的方式使用,可能不会达到预期效果。
require.resolve(dependency: String);
```

已同步的方式获取模块的 ID。编译器(compiler)会确保依赖项在最终输出 bundle 中可用。建议将其视为不透明值,只能与 `require.cache[id]``__webpack_require__(id)` 配合使用(最好避免这种用法)。
以同步的方式获取模块的 ID。编译器(compiler)会确保依赖项在最终输出 bundle 中可用。建议将其视为不透明值,只能与 `require.cache[id]``__webpack_require__(id)` 配合使用(最好避免这种用法)。

W> 模块 ID 的类型可以是 `number``string`,具体取决于 [`optimization.moduleIds`](/configuration/optimization/#optimizationmoduleids) 配置。

Expand Down

0 comments on commit 15435d7

Please sign in to comment.