我正在尝试在ZF1中创建布局
的application.ini
resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts/"
resources.layout.layout = "default"
bootstrap.php中
protected function _initView()
{
$this->bootstrap('layout');
$layout = $this->getResource('layout');
$view = $layout->getView();
$view->headTitle('default title');
return $view;
}
我有两个模块(主页和测试)“默认”布局在家中工作但不在测试中(两者都是等于,只是为了学习ZF1) 我应该做些不同的事情来为我的所有模块设置默认布局吗?
万一你需要它。这是modules / test / IndexController.php
的代码<?php
class Test_IndexController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
}
}
这是modules / test / views / scripts / index.phtml
中的代码Hello, this is the test module
如果您需要更多信息,请与我们联系。谢谢
答案 0 :(得分:0)
这不是布局问题。是视图中的代码问题。