Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 Pagedown(Stack Exchange 的 markdown,从 npm 安装)添加到 Sailsjs。我在我的 application.js 文件中正确地“要求”了它,但是我对如何在所述文件之外的任何地方使用它感到困惑。
我的目标是在控制器的操作函数中或模型的 beforeUpdate() 中使用 Pagedown。有什么线索吗?
如果您添加一个名为 pagedown.js 的服务 (./api/services/),其中包含:
module.exports = require("pagedown");
你有全局可用的 pagedown 对象。