我有一小段代码来更新元素的位置
public function moveUp($id) {
$row = $this->find($id)->current();
$kategoria = $row->kategoria;
$position = $row->position;
if($position > 1) {
$data1 = array(
'position' => new Zend_Db_Expr('position - 1')
);
$where1['id = ?'] = $id;
$this->getDefaultAdapter()->update($this->_name, $data1, $where1);
$data2 = array(
'position' => new Zend_Db_Expr('position + 1')
);
$where2['position = ?'] = $position - 1;
$where2['kategoria = ?'] = $kategoria;
$this->getDefaultAdapter()->update($this->_name, $data2, $where2);
}
}
问题是只执行第二次更新,第一次更新不执行任何操作。如果我评论第二次更新,那么第一次更新工作正常。那是为什么?
我还应该检查下一个更小/更大的位置,而不仅仅是+/- 1?这是假设应用程序的其他部分中的代码不会在位置列中产生间隙。
答案 0 :(得分:2)
好的想通了。第一次更新后,BOTH行具有相同的position
,因此第二次更新会影响BOTH行而不是一行。
通过添加
来修复它$where2['id != ?'] = $id;