【问题标题】:How to load the table templates for tabular data in CodeIgniter如何在 CodeIgniter 中加载表格数据的表格模板
【发布时间】:2012-11-06 02:18:23
【问题描述】:

我正在尝试在多个页面中为表格库重用表格模板。我试图将模板保存在 *php 文件中,以便稍后将其作为包含调用,但这不起作用。我的代码如下所示:

//on the controller
$this->load->view('includes/tabularDataTemplate.php');

//this is the contents of the tabularDataTemplate.php file    
$tmpl = array (
    'table_open'          => '<table border="1" cellpadding="4" cellspacing="0">',

    'heading_row_start'   => '<tr>',
    'heading_row_end'     => '</tr>',
    'heading_cell_start'  => '<th>',
    'heading_cell_end'    => '</th>',

    'row_start'           => '<tr>',
    'row_end'             => '</tr>',
    'cell_start'          => '<td>',
    'cell_end'            => '</td>',

    'row_alt_start'       => '<tr>',
    'row_alt_end'         => '</tr>',
    'cell_alt_start'      => '<td>',
    'cell_alt_end'        => '</td>',

    'table_close'         => '</table>'
    );

$this->table->set_template($tmpl);

我确信必须有更好的(有效的)方法来实现这一点。

【问题讨论】:

    标签: codeigniter html-table


    【解决方案1】:

    我还没有尝试过,但你可以这样做:

    //on the controller
    $tmpl = $this->load->view('includes/tabularDataTemplate.php','',TRUE);
      //This will return view file as string.
    
    //this is the contents of the tabularDataTemplate.php file    
    array (
        'table_open'          => '<table border="1" cellpadding="4" cellspacing="0">',
    
        'heading_row_start'   => '<tr>',
        'heading_row_end'     => '</tr>',
        'heading_cell_start'  => '<th>',
        'heading_cell_end'    => '</th>',
    
        'row_start'           => '<tr>',
        'row_end'             => '</tr>',
        'cell_start'          => '<td>',
        'cell_end'            => '</td>',
    
        'row_alt_start'       => '<tr>',
        'row_alt_end'         => '</tr>',
        'cell_alt_start'      => '<td>',
        'cell_alt_end'        => '</td>',
    
        'table_close'         => '</table>'
        );
    
    $this->table->set_template($tmpl);
    

    【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2014-10-25
    • 2012-02-24
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-12-31
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多