gpt4 book ai didi

node.js - 如何编写可在 Node.JS 应用程序中全局使用的扩展方法?

转载 作者:太空宇宙 更新时间:2023-11-03 23:44:51 24 4
gpt4 key购买 nike

以这个“StartsWith”扩展为例:

if (typeof String.prototype.startsWith != 'function') {
String.prototype.startsWith = function (str) {
return this.slice(0, str.length) == str;
};
}

如果我正在编写一个网络应用程序,我会将该代码粘贴到我在网站内的网页上导入的 ExtensionMethods.js 页面中。

但是在 Node.js 的服务器上使用它的情况又如何呢?

谢谢!

最佳答案

由于String是全局可用的,因此可以将其放置在需要的任何文件中。当需要一个文件时,它就会被执行。

您甚至不需要导出任何内容。

关于node.js - 如何编写可在 Node.JS 应用程序中全局使用的扩展方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15285778/

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