Node、Mongo 和 Mongoose 的新手问题
我正在尝试通过查看 GitHub 上的代码来学习如何使用 Node、Mongoose 和 Mongo。
此行的目的是什么:
PostProvider = function(){};
来自: https:// github.com/cmarin/MongoDB-Node-Express-Blog/blob/master/postprovider.js
对我来说,这似乎是一个空函数。
I am trying to learn how to use Node, Mongoose, and Mongo by looking at code from GitHub.
What's the purpose of this line:
PostProvider = function(){};
from: https://github.com/cmarin/MongoDB-Node-Express-Blog/blob/master/postprovider.js
To me, it seems like an empty function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了在javascript中模拟“类概念”,我们有3种方法。其中一种方法是使用原型功能。 Apple 类示例:
在您的示例中,PostProvider 函数没有属性。因此,“cmarin”声明一个空函数:
并添加一些方法:
To simulate the "class-concept" in javascript, we have 3 ways. One of this way is to use the prototype feature. Example for a Apple class :
In your example, the PostProvider function has no attributes. So, "cmarin" declares an empty function :
And add some methods :