杂货crud多次插入重复数据

时间:2015-08-27 07:09:01

标签: php codeigniter grocery-crud

您好我正在使用带有HMVC的Grocery CRUD,我正面临一些奇怪的问题。

class Source extends MX_Controller
{

    function __construct() {
      parent::__construct();
    }

    function index(){
            try{
                $crud = new grocery_CRUD();

                $crud->set_theme('datatables');
                $crud->set_table('source');
                $crud->set_subject('Source');

                $output = $crud->render();
                $data['css_files'] = $output->css_files;
                $data['js_files'] = $output->js_files;
                $data['output'] = $output->output;

                $this->template->title('Source')
                    ->set_layout('default')
                    ->build('example', $data );

            }catch(Exception $e){
                show_error($e->getMessage().' --- '.$e->getTraceAsString());
            }
    }
}

在源表中,我只有一个列“name”,另一个是带有自动增量和主键的id。

当我添加或插入数据时,它会在表格中添加多个数据,这些数据是重复数据的3或4倍。

我也在使用模板库。

这是我第一次遇到这个Grocery Crud的奇怪问题,任何人都可以帮我解决这个问题。

3 个答案:

答案 0 :(得分:1)

我对foodcrud数据多次插入有同样的问题,我通过在js文件中添加以下代码来解决这个问题。

我使用的是数据表主题,文件是 grocery_crud \主题\数据表\ JS \数据表-add.js

$('#save-and-go-back-button').click(function(event){
        event.stopImmediatePropagation();
        save_and_close = true;

        $('#crudForm').trigger('submit');
});

$('#crudForm').submit(function(event){
        event.stopImmediatePropagation();
        $(this).ajaxSubmit({
            url: validation_url,
.......

我们需要添加" event.stopImmediatePropagation();"点击并提交活动后。

这将有助于阻止多个重复插入。

答案 1 :(得分:0)

尝试这样做,控制器:

    class Source extends MX_Controller
    {
        function __construct() {
            parent::__construct();
        }

        function index(){
            try{
                $crud = new grocery_CRUD();

                $crud->set_theme('datatables');
                $crud->set_table('source');
                $crud->set_subject('Source');

                //edit the id of source table as it's on your table..
                $crud->set_primary_key('id', 'source');

                //set the columns you want
                $crud->columns(
                    'id',
                    'name'
                );

                //how do you want to display them in the frontend
                $crud->display_as('id', 'id');
                $crud->display_as('name', 'name');

                $table = $crud->render();
                $this->_table_output($table);

            }catch(Exception $e){
                show_error($e->getMessage().' --- '.$e->getTraceAsString());
            }
        }
    }

需要额外功能:

private function _table_output($output = null)
{
    //load reservations table
    $this->load->view('yourviewfile', $output);
}

查看:

<?php
foreach($output['css_files'] as $file): ?>
    <link type="text/css" rel="stylesheet" href="<?php echo $file; ?>" />
<?php endforeach; ?>
<?php foreach($output['js_files'] as $file): ?>
    <script src="<?php echo $file; ?>"></script>
<?php endforeach; ?>

<div>
    <?php echo $output['output']; ?>
</div>

答案 2 :(得分:0)

在展示杂货店时,有理由列出重复的行: - 如果您在视图之间存在关系函数(set_relation_n_n),则必须确保该视图具有唯一 ID列( 没有重复值)否则您将获得重复的行,解决方案是使用:  $ crud-&gt; set_primary_key('id',' viewname '); 把这一行放在关系函数之前。