我试图了解节点并通过书籍和Todos之类的示例做出反应。
但是我从未见过他们想要导出数据时使用Object。
他们为什么不使用它?
只要使用对象,导出时就不需要添加数据或事件。
示例
const insertUser = async (userData) => {
***
};
const loginAction = async (where) =>{
***
}
const checkDuplicationID = async (userId) => {
****
}
//you should add the event when you export event whenever events are added.
module.exports = { loginAction, insertUser, checkDuplicationID }
我的意见
let userActions = {}
userActions.insertUser = async (userData) => {
****
};
userActions.loginAction = async (where) =>{
****
}
userActions.checkDuplicationID = async (userId) => {
****
}
//you don't need to add the event when you export event.
module.exports = { userActions }
如果使用Object,是否有任何问题?
答案 0 :(得分:1)
使用对象没有问题,在javascript中,几乎所有对象都是对象。您可以导出这样的方法
module.exports = {
insertUser: async (userData) => {
// logic
},
loginAction: async (where) => {
// logic
},
checkDuplicationID: async (userId) => {
// logic
}
}
您可以导入/获取模块并在其他模块中使用
// import or require
const myMethods = require('./path/filename');
// call the method
myMethods.insertUser();
myMethods.loginAction();
myMethods.checkDuplicationID();