模型或库类
我将在我的 MVC 框架中创建一个用于发送电子邮件的 Email 类。 我还有一个登录类,仅检查用户是否在数据库中。
我应该将这些类放在库文件夹中还是应该将它们实现为模型?
我尝试搜索但找不到直接答案..
Im going to do an Email class for sending emails in my MVC framework.
I also have a login class that just checks if the user is in the database.
Should I put those classes in the library folder or should I implement them as models?
I tried to do search but couldnt find straight answer..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
恕我直言,邮件程序类是类似的两个控制器。他们应该从模型中获取数据,然后呈现视图(电子邮件)。
IMHO mailer classes are similar two controllers. They should fetch the data from a model and than render a view (email).
试试这个参考,看看它是否对您有帮助。
Try this reference and see if it helps you.