gpt4 book ai didi

node.js - 什么需要 ('./.' );方法?

转载 作者:行者123 更新时间:2023-12-01 13:18:42 24 4
gpt4 key购买 nike

顺便发现这个看起来很奇怪的 URL。

var _ = require('./.');

有人可以解释这在现实中会做什么以及他们为什么这样做吗?

最佳答案

这可能是一个错字,但它被规范化为

如果您对 Node.js 中路径的解析方式感到好奇,您可以使用 path 方法和 require.resolve 来查看发生了什么。

> path.normalize('./.')
'.'
> path.normalize('././././././././.')
'.'
> require.resolve('./.') // assuming `index.js` exists...
'/path/to/index.js'

关于node.js - 什么需要 ('./.' );方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52062296/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com