1

Jquery を使用するのはかなり初めてで、CodeIgniter とブートストラップを使用して作成している単純なサイトのログインを作成しています。[ログイン] ボタンを送信した後、エラーや成功のメッセージは表示されません。つまり、実際にコントローラーにデータを送信するかどうかさえわかりません。これが私のコードです。

Jクエリコード

     <script>
  //Wait until the DOM is fully loaded
  $(document).ready(function(){
     //Listen for the form submit
     $('#loginform').submit(logIn);
   });

//The function that handles the process
function logIn(event)
{
   //Stop the form from submitting
   event.preventDefault();
        //Hide our form
               // $('#loginform').slideUp();

   //Collect our form data.
   var form_data = {
    email : $("[name='email']").val(),
    password : $("[name='password']").val(),

   };

  //Begin the ajax call
  $.ajax({
        url: "admin",
        type: "POST",     
        data: form_data,
        dataType: "json",
        cache: false,

        success: function (json) {             
            if (json.error==1)
            {
                //Show the user the errors.
               $('#message').html(json.message);
            } else {
                //Hide our form
                $('#loginform').slideUp();
                //Show the success message
                $('#message').html(json.message).show();
            }             
        }
      });
   }
</script>

login.php

           <?php 
            echo $this->session->flashdata('alert');
        ?>
        <div id="message"></div>
<?php
    $attr = array('class' => 'admin-login form-horizontal well form-signin', 'id' => 'loginform');
    echo validation_errors('<div class="alert alert-error">', '</div>');
?>
<?php echo form_open(site_url('admin'), $attr) ?>
<!--<form action="<?php echo site_url('track-order'); ?>" method="post" class="form-horizontal form-search" id="trackModalform">-->
    <div class="control-group">
        <label class="control-label">Track Your Order</label>
    </div>
    <div class="control-group">
        <label class="control-label" >Email:</label>
        <div class="controls">
            <div class="input-prepend">
                <span class="add-on"><i class="icon-qrcode"></i></span>
               <input type="text" name="email" class="input-block-level email" placeholder="Email address">
            </div>
        </div>
    </div>
    <div class="control-group">    
        <label class="control-label" >Password:</label>
        <div class="controls">
            <div class="input-prepend">
                <span class="add-on"><i class="icon-key"></i></span>
               <input type="password" name="password" class="input-block-level password" placeholder="Password">
            </div>
        </div>
    </div>
    <div class="form-actions" style="margin-bottom: 0px; padding-bottom: 0px;">
        <input type="submit" class="btn  btn-primary " name="signin" value="Sign In!" id="login">
    </div>
</form>

私のコントローラー

    public function index()

{
        if (!file_exists('application/views/admin/index.php'))
        {
            //sorry that page is not available
            show_404();
        }                

                $this->form_validation->set_rules('email', 'Name', 'required|min_length[5]|max_length[50]|valid_email');
                $this->form_validation->set_rules('password', 'Password', 'required|min_length[5]');


        if($this->form_validation->run() === TRUE)
        {
            echo json_encode(array('error' => '1', 'message' => validation_errors('<div class="alert alert-error"><strong>Error!</strong> ', '</div>')));
        } else {
            //Save the data to the database, of course you will need all the data first.
           if($this->admin_model->validate_admin_login()):
             //Send the success to our javascript file.
             echo json_encode(array('error' => '0', 'message' => '<div class="alert alert-success"><strong>Success!</strong> You have been registered!</div>'));

           endif;     
        }

        $data['title'] =    ucfirst('Admin - Home');
        $data['currentpage'] =    'home';

        $this->load->view('admin/index', $data);
}

モデル

public function validate_admin_login()
{
    $this->str = do_hash($this->input->post('password')); // SHA1 
    $this->db->where('email', $this->input->post('email'));
    $this->db->where('password', $this->str);
    $query = $this->db->get('ip_admin');

    if($query->num_rows == 1)
    {
         $data['admin_sess'] = $this->admin_model->admin_details($this->input->post('email'));
            $data = array(
            'email' => $this->input->post('email'),
            'is_admin_logged_in' => true
             );     
             $this->session->set_userdata($data);      
        return true;
    }
}

public function admin_details($user)
{         
    $query = $this->db->select('*')->from('ip_admin')->where('email', $user);
    $query = $query->get();
    return $data['admin_sess'] = $query->row();       
}

成功または失敗を示すためにメッセージに応答したり出力したりすることは実際にはありません。おそらく、最初からすべてが間違っていたのでしょう。

データベースにクエリを実行する必要があり、コントローラーのjsonパラメーターを使用して、ビューページでメッセージを返します。

皆さんありがとう。

4

2 に答える 2