调用MVC2中的方法
如何从模型调用控制器方法内的方法。
how to call a method within a method in the controller from a model.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从模型调用控制器方法内的方法。
how to call a method within a method in the controller from a model.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您无法从模型调用控制器中的方法,因为您没有控制器的实例。唯一的方法是将控制器的实例传递给模型,以便它可以调用该方法,但这将是不好的做法。因此,如果模型需要调用控制器上的方法,那么您就做错了。
You cannot call a method in a controller from a model because you don't have the instance of the controller. The only way would be to pass the instance of the controller to the model so that it can call the method but that would be bad practice. So if a model needs to call a method on the controller you are doing something wrong.