在Node.js 中包含來自外部文件的函數
如果您想使用來自單獨文件的函數,請說「tools. js, 「在您的主Node.js 應用程式(「app.js」)中,有兩個選項。
1。基本匯入:
您可以直接要求「tools.js」檔案並選擇要公開的函數。
// tools.js module.exports = { foo: function () {}, bar: function () {} };
在「app.js」:
const tools = require('./tools'); console.log(typeof tools.foo); // 'function' console.log(typeof tools.bar); // 'function'
這僅公開「tools.js」中的指定函數。但是,此方法不支援公開變數或類別。
2.模組導出:
可以將「工具」轉為模組,然後require它。
// tools.js export default { foo: function () {}, bar: function () {} }; export class Foo {}
在「app.js」中:
import tools from './tools'; console.log(typeof tools.foo); // 'function' console.log(typeof tools.bar); // 'function' console.log(tools.Foo instanceof Function); // true
此方法支援導入模組中的所有匯出,包括變數和類別。
以上是如何在 Node.js 中包含外部文件中的函數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!