调用控制器查看我使用此代码.. 我想在调用控制器查看时将“template / home / home”页面添加到iframe标签中。 我该怎么办?
class main_con extends Controller
{
function main_con()
{
parent::Controller();
// $this->freakauth_light->check('user');
$this->_container = $this->config->item('FAL_template_dir') . 'template/container';
$this->load->library('FAL_front', 'fal_front');
}
function index()
{
$data['redirect_page'] = 'template/home/home';
$this->load->vars($data);
$this->load->view($this->_container);
}
}
提前谢谢你......
答案 0 :(得分:2)
我不太确定我是否理解你的问题但是:
iframe是否在您的视图模板中?所以你需要做的就是在iframe的src属性中打印变量的内容。