调用MVC2中的方法

发布于 2024-10-26 08:23:16 字数 24 浏览 1 评论 0原文

如何从模型调用控制器方法内的方法。

how to call a method within a method in the controller from a model.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

坦然微笑 2024-11-02 08:23:16

您无法从模型调用控制器中的方法,因为您没有控制器的实例。唯一的方法是将控制器的实例传递给模型,以便它可以调用该方法,但这将是不好的做法。因此,如果模型需要调用控制器上的方法,那么您就做错了。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文