如何从Node.Js app中引用exports函数?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从Node.Js app中引用exports函数?相关的知识,希望对你有一定的参考价值。

假设我在我的Node.Js应用程序的exports中有以下validate.js函数:

exports.stopwordsClean = function () {
    return function(req, res, next){
        console.log("validating...");
    }
};

我明白,从另一个文件引用这个函数我会首先require这个文件,然后使用validate.stopwordsClean()

但是如何从同一个文件中引用它呢? this.stopwordsClean()不起作用......

答案

exportsmodule中的一个对象。当你写exports.stopwordsClean = function () {..时,你正在设置stopwordsClean对象的属性exports。因此你可以随时使用

exports.stopwordsClean()

在同一个模块中使用该功能。

以上是关于如何从Node.Js app中引用exports函数?的主要内容,如果未能解决你的问题,请参考以下文章

Node.js基础

深入理解node.js的module.export 和 export方法的区别

搭建 VUE + NODE.JS + ElementUI 学习过程中问题总结

Node.js的学习入门(module.exports与exports)

Node.js "require" 函数和参数

module.exports和exports.md