Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
它是错误还是设计使然?如果是第二个,这似乎不合逻辑......如果它已经初始化,为什么要重新初始化?还是我错了?...
这些$this->_forward()方法的工作方式类似于内部 (3xx) 重定向。它的目的是设置一个新的环境,比如一个新的请求。当您使用模块时,这将特别有用且明显。
$this->_forward()
要转发到同一控制器内的另一个操作,您应该使用$this->dispatch('nextAction').
$this->dispatch('nextAction')