我正在使用 MVC 框架(CodeIgniter)。在我看来,我有两个数组,一个用于常规报告,一个用于管理报告:
<div id="queries">
<center><strong>Report Generator</strong></center>
<br />
<?php
$performance = array(
'' => 'Click Here',
'1' => 'Student Total Wait',
'2' => 'Counselor Performance Per Session',
'3' => 'Average Counselor Performance',
);
$admin = array(
'' => 'Click Here',
'4' => 'Reasons For Visit',
'5' => 'Aid Years',
);
echo form_open('reports_controller/generate');
echo "<p><strong>Performance Reports</strong></p>";
echo form_dropdown('performance', $performance);
echo "<p><strong>Administrative Reports</strong></p>";
echo form_dropdown('admin', $admin);
echo "<br>";
echo "<br>";
echo "<br>";
echo "<br>";
echo form_submit('submit', 'Generate Report');
?>
</div>
所有这两个数组都填充了下拉列表。
现在,当它实际发布到控制器时,我的问题就来了。在我的控制器中,我有一个 foreach 循环来检查发布的值是否存在,如果存在,那么我希望它根据用户选择的内容动态拉取模型(sql 查询)。
控制器 :
class Reports_controller extends MY_logincontroller {
function generate() {
$this -> load -> model('reports_model');
$reportsfunction = array('1' => 'studenttotalwait()', '2' => 'counselorperformance()', '3' => 'avgperformance()', '4' => 'reasons()', '5' => 'aidyears()', );
foreach ($reportsfunction as $model_function) {
$data['returns'] = $this -> reports_model -> $model_function;
$data['main_content'] = 'reports/generate';
$this -> load -> view('includes/js/js_template', $data);
}
}
我现在的问题是我如何实际动态加载与模型中正在查询的字段集相对应的视图?我对我的控制器阵列的工作方式充满信心。我还没有参加 Comp。科学 1 所以我一直在以错误的方式学习 php。
我希望这是一个适当的问题。
编辑 :
我可以硬编码以查看 1 是否是发布的值,然后使用此模型数据输出这样那样的视图,但我想节省工作并在做项目时学到很多东西。- 自私 - 对不起。