Updating Multiple Rows in Codeigniter(在 Codeigniter 中更新多行)
问题描述
我可以在数据库中插入多行,但问题是当我尝试更新它时,它会给我一个 Codeigniter 错误消息.这是我的模型,实际上我在控制器中没有什么重要的发现错误,是因为我只是在控制器中加载了该模型.
I can insert multiple rows in the database, but the problem is when I am trying to update it gives me a Codeigniter error message. Here is my model, actually I have nothing significant in the controller to find an error in, is because I just load that model in controller.
$data = array();
//$todayDate = date('Y-m-d');
for($i = 1; $i < count($_POST['code']); $i++) {
//$code=$_POST['code'][$i];
if($_POST['code'][$i] != '') {
$data[] = array(
$code='code' => $_POST['code'][$i],
'price' => $_POST['sell']
);
}
}
$linksCount = count($data);
if($linksCount) {
$this->db->where('code',$code);
$this->db->insert_batch('sell_rate', $data);
}
return $linksCount;
推荐答案
在你的Model
下面的部分应该是
In your Model
following part should be
$data[] = array(
$code='code' => $_POST['code'][$i],
'price' => $_POST['sell']
);
替换为
$data[] = array(
'code' => $_POST['code'][$i],
'price' => $_POST['sell']
);
要更新值,您应该使用 update_batch
而不是 insert_batch
and to update the values you should use update_batch
instead of insert_batch
$this->db->update_batch('yourtableName', $data, 'code'); // 'code' is where key
将 yourtableName
替换为您的原始表名,并且 code
用于 where
键,因此您不需要使用 $this->db->where('code',$code)
.
Replace yourtableName
with your original table name and code
is being used for where
key, so you don't need to use $this->db->where('code',$code)
.
参考: CodeIgniter.
这篇关于在 Codeigniter 中更新多行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Codeigniter 中更新多行
基础教程推荐
- 超薄框架REST服务两次获得输出 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01