0

我使用 MVC 在 joomla 中创建自己的组件...我在客户端创建一个主表操作...(添加、更新、删除)但是当我选择一条记录并按下删除按钮时,出现以下错误,

代码:

数据库行为空。
数据库行为空。

调用堆栈

#      Function      Location   
1      JSite->dispatch()      C:\wamp\www\gstest\index.php:42   
2      JComponentHelper::renderComponent()      C:\wamp\www\gstest\includes\application.php:198   
3      JComponentHelper::executeComponent()      C:\wamp\www\gstest\libraries\joomla\application\component\helper.php:357   
4      require_once()      C:\wamp\www\gstest\libraries\joomla\application\component\helper.php:388   
5      JController->execute()      C:\wamp\www\gstest\components\com_gsmasters\gsmasters.php:16   
6      gsmastersController->display()      C:\wamp\www\gstest\libraries\joomla\application\component\controller.php:754   
7      JController->display()      C:\wamp\www\gstest\components\com_gsmasters\controller.php:25   
8      gsmastersViewgsmasters->display()      C:\wamp\www\gstest\libraries\joomla\application\component\controller.php:715   
9      JError::raiseError()      C:\wamp\www\gstest\components\com_gsmasters\views\gsmasters\view.html.php:27   
10      JError::raise()      C:\wamp\www\gstest\libraries\joomla\error\error.php:251

这是HTML:

<form action="<?php echo JRoute::_('index.php?option=com_gsmasters&layout=edit&id='.(int) $this->item->id); ?>" method="post" name="adminForm" id="gsmasters-form" class="form-validate"> 
   <div class="width-60 fltlft"> 
      <fieldset class="adminform"> 
         <legend><?php echo JText::_( 'COM_GSMASTERS_GSMASTERS_DETAILS' ); ?></legend>    
         <ul class="adminformlist"> <?php foreach($this->form->getFieldset('details') as $field): ?> 
           <li><?php echo $field->label;echo $field->input;?></li> <?php endforeach; ?> 
         </ul> 
    </div>

请给出任何解决方案..,,谢谢。

4

0 回答 0