当我尝试保存时,我收到错误“无法刷新行,因为父项缺失”。这是我的代码
abstract class Webapp_Model_Resource_Db_Table_Abstract
extends Zend_Db_Table_Abstract
{
/**
* Save a row to the database
*
*
* @param array $info The data to insert/update
* @param Zend_DB_Table_Row $row Optional The row to use
* @return mixed The primary key
*/
public function saveRow($info, $row = null)
{
if (null === $row) {
$row = $this->createRow();
}
$columns = $this->info('cols');
foreach ($columns as $column) {
if (array_key_exists($column, $info)) {
$row->$column = $info[$column];
}
}
return $row->save();
}
}
当我调用saveRow()方法时,我传入$ _POST值($ form-> getValues())
我在同一个应用程序中重用了这个类和其他模块,但现在我收到了这个错误,我不知道为什么。我的表很简单:
CREATE TABLE `news` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`headline` varchar(100) DEFAULT NULL,
`snippet` varchar(500) DEFAULT NULL,
`full_text` text,
`author` varchar(100) DEFAULT NULL,
`publish_from` date DEFAULT NULL COMMENT 'Publish date',
`publish_to` date DEFAULT NULL COMMENT 'Take it down or mark as draft after this date',
`datecreated` timestamp NULL DEFAULT NULL COMMENT 'First created on',
`revised` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Timestamp for the last time it was revised',
`draft` tinyint(1) DEFAULT '0' COMMENT 'Should not be published',
`departments_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=214 DEFAULT CHARSET=utf8 COMMENT='Stores news articles';
任何人都知道我做错了什么?
:::::::::::::: ADDTION :::::::::::::
public function saveNews($post,$defaults = array())
{
//get the form
$form = $this->getForm('article' . ucfirst($validator));
//validate
if(!$form->isValid($post)) {
return false;
}
//get fitered values
$data = $form->getValues();
//apply defaults
foreach($defaults as $col => $value) {
$data[$col] = $value;
}
//get the article if it exists
$article = array_key_exists('id', $data) ?
$this->getNewsById($data['id']) : null;
return $this->saveRow($data, $article);
}
答案 0 :(得分:11)
当您为主键传递一个空值时,Zend似乎返回此值而不是插入的自动增量值 - 即使使用自动增量值正确创建了新行,插入的值也不会返回。
也许你的问题与此有关。如果是这样,请在保存之前尝试取消设置id字段。
答案 1 :(得分:3)
您必须通过将$_sequence
设置为true
或序列名称来告知DbTable存在自动增量主键。
答案 2 :(得分:0)
检查你的$ info数组。可能你的主键有一些空值。 因此,array_key_exists($ column,$ info)返回true,并为行指定一个空主键。这会导致错误,因为具有此键的行不存在。
尝试
if (array_key_exists($column, $info) and $column != 'YOUR_PRIMARY_KEY_NAME')
{
$row->$column = $info[$column];
}
答案 3 :(得分:0)
在我的情况下,问题是缺少AUTO_INCREMENT。
答案 4 :(得分:-1)
你能发布这个功能:
$this->getNewsById($id)
有你的问题......