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.
我刚学了sails.js,它是一个基于NodeJs平台的框架。网站是http://sailsjs.org。现在我想为其编写一个模块,例如上传文件功能,但我不知道从哪里开始。
请帮我。
谢谢,
我不确定这是否是你想要的,但它是这样的:
基本上,由于sails 从 express 继承,因此您可以使用 module.exports 添加模块。例如,如果您创建一个在文件夹中命名的模块test,config那么您可以通过sails对象通过以下方式访问它:
test
config
sails
sails.config.foo()
其中 foo 是测试文件中的一个模块。