如何防止重复记录



我没有CodeIgniter的知识,希望得到一些帮助。在我工作的公司里,有一种礼服租赁的预订系统,所以,新娘需要在去商店之前通过在线系统安排一个约会时间。该脚本是用Codeigniter编写的,错误是什么:一些记录在数据库中被复制,我的意思是,id保持不同,但在管理中,相同的客户被显示计划到相同的日期时间4,5次,无论如何。下面是在数据库中创建/插入调度的代码:

$agendamento = Agendamento::create(array(
    'loja_id'           => $this->input->post('loja_id'),
    'usuario_id'        => $this->input->post('usuario_id'),
    'datahora'          => $this->input->post('datahora'),
    'loja'              => $loja->nome,
    'ultima_alteracao'  => date('Y-m-d h:j:s'),
    'status'            => 'D-2'
));

以上数据来自ajax请求,如下:

$('#confirma_agendamento').on('click touchstart', function() {
    $.ajax({
        "dataType" : "text",
        "type" : "POST",
        "data" : {
            "loja_id" : loja_selecionada,
            "lista_espera" : lista_espera,
            "usuario_id" : usuario_id,
            "datahora" : data_selecionada + " " + hora_selecionada + ":00:00",
            //"vestidos" : $("#vestidos").val()
        },
        "url" : base_url + 'ajax/lojas/agendar',
        "success" : function (retorno) {
            if (retorno == '1') {
                window.location = SITE_URL + 'meus_agendamentos';
            }
            else {
                showModal('<h1>Erro</h1><p>Houve algum problema com o seu agendamento. Por favor tente novamente em alguns instantes.</p>');
            }
        },
        "error" : function() {
            showModal('<h1>Erro</h1><p>Houve algum problema com o seu agendamento. Por favor tente novamente em alguns instantes.</p>');
        }
    });
});

所以,我的问题是:如何防止重复记录的日期时间,我的意思是,避免2记录相同的日期时间在编码器?

在你的ajax请求url" url": base_url + 'ajax/lojas/议程',在ajx控制器lojas方法停留,你首先需要检查的数据已经留在或不在数据库中。如果找到数据,则不插入,如果数据不在数据库中,则写入插入查询

相关内容

  • 没有找到相关文章

最新更新