我试图在动态表格中显示数据库中的结果,我使用的是codeigniter:
这是我的模特:
class Cliente_model extends CI_Model {
function __construct() {
parent::__construct();
}
public function obtenerDatos() {
$data = $this->db->get('cliente');
return $data;
}
这是我的控制者:
class Cliente extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->load->model('cliente_model');
}
public function index()
{
$tabla = $this->cliente_model->obtenerDatos();
$data = $tabla->result_array();
print_r($data); //This works
$this->load->view('cliente_view',$data);
}
}
这是我观点的表格部分:
<table class="table table-sm table-striped table-bordered table-hover">
<thead class="thead-dark">
<tr>
<th scope="col">Cliente</th>
<th hidden scope="col">ID</th>
<th scope="col">Correo 1</th>
<th scope="col">Correo 2</th>
<th scope="col">Correo 3</th>
<th scope="col">Correo 4</th>
<th scope="col">Correo 5</th>
<th scope="col">Correo 6</th>
<th scope="col">Correo 7</th>
<th scope="col">Correo 8</th>
<th scope="col">Status</th>
<th scope="col">Acción</th>
</tr>
</thead>
<tbody>
<?php foreach ($data as $fila): ?>
<tr>
<th scope="row"><?php echo $fila['nombreCliente'];?></td>
<td hidden><?php echo $fila['idCliente'];?></td>
<td><?php echo $fila['correoCliente1'];?></td>
<td><?php echo $fila['correoCliente2'];?></td>
<td><?php echo $fila['correoCliente3'];?></td>
<td><?php echo $fila['correoCliente4'];?></td>
<td><?php echo $fila['correoCliente5'];?></td>
<td><?php echo $fila['correoCliente6'];?></td>
<td><?php echo $fila['correoCliente7'];?></td>
<td><?php echo $fila['correoCliente8'];?></td>
<?php if ($fila['statusCliente'] == 'Activo') { ?>
<td><span class="badge badge-pill badge-success">Activo</span></td>
<?php } else { ?>
<td><span class="badge badge-pill badge-warning">Inactivo</span></td>
<?php } ?>
<td><a href="#" title=""><span class="badge badge-pill badge-warning">Editar </span><img src="../imagenes/glyphicons/png/glyphicons-151-edit.png" alt="" title=""></a></a></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
当我在控制器中调用print_r函数时,$ data变量显示我要传递给视图的所有记录,但是当我发送到视图时,在foreach函数中给出了这些错误:
错误1:
遇到PHP错误 严重性:注意
消息:未定义的变量:数据
文件名:views / cliente_view.php行号:44
Backtrace:
文件:C:\ AppServ \ www \ CariLMS \ application \ views \ cliente_view.php
行:44
功能:_error_handler文件:C:\ AppServ \ www \ CariLMS \ application \ controllers \ Cliente.php
行:17
功能:查看文件:C:\ AppServ \ www \ CariLMS \ index.php
线:315
功能:require_once
错误2:
遇到PHP错误 严重性:警告
消息:为foreach()提供的参数无效
文件名:views / cliente_view.php
行号:44
Backtrace:
文件:C:\ AppServ \ www \ CariLMS \ application \ views \ cliente_view.php
行:44
功能:_error_handler文件:C:\ AppServ \ www \ CariLMS \ application \ controllers \ Cliente.php
行:17
功能:查看文件:C:\ AppServ \ www \ CariLMS \ index.php
线:315
功能:require_once
你知道为什么不工作吗?
答案 0 :(得分:4)
在模型函数中写下:
$query = $this->db->get('cliente');
$data = $query->result_array();
return $data;
这在你的控制器中:
$data['client']= $this->cliente_model->obtenerDatos();
$this->load->view('cliente_view',$data);
然后将其添加到您的视图中:
<?php if ($client): foreach($client as $fila):?>
<td><?php echo $fila['correoCliente1'];?></td>
等...
正如您将看到的,$data['client']
现在正在保存您的数据库信息,您可以通过循环浏览视图中的关联数组来读取它。有关查询构建器类here的更多信息。
答案 1 :(得分:2)
如果使用数据数组调用视图,则提供的数组必须是关联数组,它使用变量名作为键,并将其值用作变量值。例如:
//Controller
$data = [];
$data['var1'] = true;
$data['var2'] = 'This is a string value';
$this->load->view('cliente_view',$data);
现在,您可以在视图中调用变量$var1
和$var2
,因为data
数组中的键是
//View
if ($var1)
echo $var2;
else
echo 'false';
因此,您的问题的解决方案是将变量名称'data'
添加为您提供的数组的键:
$data = ['data' => $data];
$this->load->view('cliente_view',$data);
之后,您可以在视图中使用变量$data
。