您可以稍微重构一下模块。像这样。
var service = { myFunction: myFunction, anotherFunction: anotherFunction}module.expors = service;function myFunction(){};function anotherFunction() { service.myFunction(); //calls whatever there is right now}
您可以稍微重构一下模块。像这样。
var service = { myFunction: myFunction, anotherFunction: anotherFunction}module.expors = service;function myFunction(){};function anotherFunction() { service.myFunction(); //calls whatever there is right now}