gpt4 book ai didi

CodeIgniter: Controller 的生命周期

转载 作者:行者123 更新时间:2023-12-04 03:05:57 26 4
gpt4 key购买 nike

文字很长,问题其实很简单,用粗体写的。其他文字只是为了试图说明问题。

我最近开始使用 CodeIgniter 来开发我的网站。目前,我正在编写一个侧边菜单,您可以在其中过滤 View 中显示的项目(基本电子商务功能)。

我的想法是在我的 Shop-controller 中有一个数组,我在其中存储我的过滤值,这些值传递到我的 filterview,因此过滤器菜单可以处理多种类型的过滤器。

问题是 Controller 的构造函数似乎在每次调用 Controller 时都在运行。我认为 Controller 只在用户进入网站时构造一次。我在网站开发方面很新,主要是 C++ 人员,所以这对我来说似乎有点奇怪。

我的问题其实很简单: Controller 实例是在每次调用 Controller 函数时创建的吗?否则,我做错了什么导致在每次 Controller 调用时重新实例化 Controller 实例......

我希望我的问题不是太模糊。了解 CodeIgniter 的生命周期行为对我来说很重要,这样才能找到一个简单的解决方案。我想避免使用 $_SESSION,因为我想使用类似 OOP 的解决方案。

最佳答案

Is it true that the controller instance is created at each call to a controller function? Otherwise, what am I doing wrong to cause the controller instance to be reinstantiated at each controller call..

是的,每次调用该 Controller 时都会重新实例化 Controller 实例。在 CodeIgniter 中,对于每个与您的应用程序交互的用户,不存在 Controller 的持久实例(不同于用 C++ 构建的单用户应用程序)。您所拥有的是 session 管理,您可以在其中使用 session 变量来存储用户浏览器和您的 Web 服务器 (more) 之间特定 session 的持久数据。另一种方法是使用 cookie。我个人更喜欢 session 而不是 cookie。

将 $_SESSION 用于您的过滤器并没有什么坏处,也不违反 OOP 原则。重要的是在加载 Controller 实例后如何使用存储在 Session 变量中的数据(这就是 OOP 概念发挥作用的地方)。

关于CodeIgniter: Controller 的生命周期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4118922/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com