我正在尝试从另一个模块栏访问foo中的部分视图.简化文件结构:
application/ modules/ foo/ index.phtml bar/ partial.phtml
在index.html中,您将具有以下代码:
<?PHP echo $this->partialLoop('../bar/partial.phtml',$this->paginator); echo $this->paginator; ?>
问题是你实际上不能使用父遍历,因为我得到这个错误:
Requested scripts may not include parent directory traversal ("../","..\" notation)
你需要传递模块参数:
原文链接:https://www.f2er.com/php/132122.html<?PHP echo $this->partialLoop('partial.phtml','bar',$this->paginator); ?>