删除记录
在model中实现功能
model中获取返回的IDS,并调用mdoel删除记录,以下是代码清单:
/**
* Method to delete record(s)
*
* @access public
* @return boolean True on success
*/
function delete()
{
$cids = JRequest::getVar( 'cid', array(0), 'post', 'array' );
$row =& $this->getTable();
foreach($cids as $cid) {
if (!$row->delete( $cid )) {
$this->setError( $row->getErrorMsg() );
return false;
}
}
return true;
}
JRequest::getVar()返回cid数据, 然后调用$row->delete()删除每一行.
在controller中处理设置删除任务处理,与save是相似的。
/**
* remove record(s)
* @return void
*/
function remove()
{
$model = $this->getModel('hello');
if(!$model->delete()) {
$msg = JText::_( 'Error: One or More Greetings Could not be Deleted' );
} else {
$msg = JText::_( 'Greeting(s) Deleted' );
}
$this->setRedirect( 'index.php?option=com_hello', $msg );
}
取消操作:
/**
* cancel editing a record
* @return void
*/
function cancel()
{
$msg = JText::_( 'Operation Cancelled' );
$this->setRedirect( 'index.php?option=com_hello', $msg );
}
到现在为止,我们就全部完成了组件管理后台的开发。
本文介绍了在 Joomla 框架下如何通过 Model 层实现记录的批量删除功能,包括了具体的 PHP 代码示例,展示了如何从 POST 请求中获取 ID 列表并逐一删除。
111

被折叠的 条评论
为什么被折叠?



