CodeIgniter 中的表类和页面视图
我的欢迎控制器编码如下,
function index()
{
// some code here to set up my table
echo $this->table->generate();
$data['heading'] = "My Real Heading";
$this->load->view('view_page', $data);
}
当我打开 http://localhost/ci/index.php/welcome/
发现表格生成成功。但我怎样才能将我的表格放在标题下呢? 我很困惑,模块函数生成的表类。它将在视图页面加载之前完成。这就是问题发生的原因。
[更新]。
我发现 echo $this->table->generate();
可以放入我的视图页面中。现在可以了。
My welcome controller coded like this,
function index()
{
// some code here to set up my table
echo $this->table->generate();
$data['heading'] = "My Real Heading";
$this->load->view('view_page', $data);
}
When I open http://localhost/ci/index.php/welcome/
I found the table generated successfully. but how can I place my table showed under my Heading?
My confused that, the table class generated by module function. It will finished before the view page load. That's why the issue occurred.
[Updated].
I found echo $this->table->generate();
could be place into my view page. It works now.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在你看来:
in your view: