生成器无法转换为字符串
Builder could not be converted to string
需要帮助,我想对 codeigniter4 中的一列求和,但出现此错误:
Error: object of class CodeIgniter\Database\MySQLi\Builder could not be converted to string
这是我的模型:
public function tot_crew_wni_arr() {
return $this->db->table('tbl_est_arr')->selectSum('crew_wni_arr');
}
在控制器
$data = array(
'tot_crew_wni_arr' => $this->Model_home->tot_crew_wni_arr(),
);
return view('layout/v_wrapper', $data);
这是我的观点:
<h3><?= $tot_crew_wni_arr ?></h3>
您的模型函数应如下所示:
public function tot_crew_wni_arr() {
$db = \Config\Database::connect();
$builder = $db->table('tbl_est_arr');
return $builder->selectSum('crew_wni_arr')->get();
}
需要帮助,我想对 codeigniter4 中的一列求和,但出现此错误:
Error: object of class CodeIgniter\Database\MySQLi\Builder could not be converted to string
这是我的模型:
public function tot_crew_wni_arr() {
return $this->db->table('tbl_est_arr')->selectSum('crew_wni_arr');
}
在控制器
$data = array(
'tot_crew_wni_arr' => $this->Model_home->tot_crew_wni_arr(),
);
return view('layout/v_wrapper', $data);
这是我的观点:
<h3><?= $tot_crew_wni_arr ?></h3>
您的模型函数应如下所示:
public function tot_crew_wni_arr() {
$db = \Config\Database::connect();
$builder = $db->table('tbl_est_arr');
return $builder->selectSum('crew_wni_arr')->get();
}