<small id='mXVak'></small><noframes id='mXVak'>

      <bdo id='mXVak'></bdo><ul id='mXVak'></ul>
    1. <tfoot id='mXVak'></tfoot>

        <legend id='mXVak'><style id='mXVak'><dir id='mXVak'><q id='mXVak'></q></dir></style></legend>
        <i id='mXVak'><tr id='mXVak'><dt id='mXVak'><q id='mXVak'><span id='mXVak'><b id='mXVak'><form id='mXVak'><ins id='mXVak'></ins><ul id='mXVak'></ul><sub id='mXVak'></sub></form><legend id='mXVak'></legend><bdo id='mXVak'><pre id='mXVak'><center id='mXVak'></center></pre></bdo></b><th id='mXVak'></th></span></q></dt></tr></i><div id='mXVak'><tfoot id='mXVak'></tfoot><dl id='mXVak'><fieldset id='mXVak'></fieldset></dl></div>

      1. 在 CodeIgniter 中通过 jQuery AJAX 插入和移动多个图像

        Insert and move multiple images via jQuery AJAX in CodeIgniter(在 CodeIgniter 中通过 jQuery AJAX 插入和移动多个图像)
          <tbody id='Ywotg'></tbody>
        <i id='Ywotg'><tr id='Ywotg'><dt id='Ywotg'><q id='Ywotg'><span id='Ywotg'><b id='Ywotg'><form id='Ywotg'><ins id='Ywotg'></ins><ul id='Ywotg'></ul><sub id='Ywotg'></sub></form><legend id='Ywotg'></legend><bdo id='Ywotg'><pre id='Ywotg'><center id='Ywotg'></center></pre></bdo></b><th id='Ywotg'></th></span></q></dt></tr></i><div id='Ywotg'><tfoot id='Ywotg'></tfoot><dl id='Ywotg'><fieldset id='Ywotg'></fieldset></dl></div>

            <small id='Ywotg'></small><noframes id='Ywotg'>

            <legend id='Ywotg'><style id='Ywotg'><dir id='Ywotg'><q id='Ywotg'></q></dir></style></legend>
              <bdo id='Ywotg'></bdo><ul id='Ywotg'></ul>
                <tfoot id='Ywotg'></tfoot>

                1. 本文介绍了在 CodeIgniter 中通过 jQuery AJAX 插入和移动多个图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  查看:

                  $("#submit").on('click',function(e){
                      e.preventDefault();
                      product_name = $("#product_name").val();
                      category = $("#category").val();
                      var formData = new FormData();
                      $.each($("#product_image"), function (i, obj) {
                          $.each(obj.files, function (j, file) {                    
                              formData.append('product_image[' + i + ']', file);
                          });
                      });
                      formData.append('product_name', product_name);
                      formData.append('category', category);
                      $.ajax({
                          type:"POST",
                          data:formData,
                          processData: false,
                          contentType: false,
                          url:"<?php echo base_url(); ?>admin/products",
                          success:function(data){
                              alert(data);
                          }
                      });
                  });
                  

                  控制器:

                  public function products()
                  {
                      $dataInfo = array();
                      $files = $_FILES;
                      $cpt = count($_FILES['product_image']['name']);
                      for($i=0; $i<$cpt; $i++)
                      {           
                          $_FILES['product_image']['name']= $files['product_image']['name'][$i];
                          $_FILES['product_image']['type']= $files['product_image']['type'][$i];
                          $_FILES['product_image']['tmp_name']= $files['product_image']['tmp_name'][$i];
                          $_FILES['product_image']['error']= $files['product_image']['error'][$i];
                          $_FILES['product_image']['size']= $files['product_image']['size'][$i];    
                  
                          $this->upload->initialize($this->set_upload_options());
                          $this->upload->do_upload();
                          $dataInfo[] = $this->upload->data();
                      }
                  
                      $data = array(
                  
                              'product_name' => $this->input->post('product_name'),
                              'category' => $this->input->post('category'),
                              'product_image' => implode(",",array_column($dataInfo, 'product_image'))
                          );
                      $sql = $this->db->insert('add_product',$data);
                      if($sql == true)
                      {
                          echo 'New Product Added';
                      }
                      else
                      {
                          echo 'Unable to Proceed!';
                      }
                  }
                  
                  private function set_upload_options()
                  {   
                      $config = array();
                      $config['upload_path'] = ''.base_url().'resource/product/';
                      $config['allowed_types'] = 'gif|jpg|png';
                      $config['max_size']      = '0';
                      $config['overwrite']     = FALSE;
                      return $config;
                  }
                  

                  我有三个输入字段,即 product_name、category 和 product_image.现在,我想移动多个图像并插入以逗号(,)分隔的 product_image 名称,例如 img1.jpg,img2.jpg,img3.jpg 之类的.现在,当我警告响应时,它什么也没显示.那么,我该如何解决?请帮帮我.

                  I have three input field i.e. product_name,category and product_image. Now, I wants to move multiple images and insert product_image name which is separated by comma(,) for example img1.jpg,img2.jpg,img3.jpg like that. Now, when I alert reponse it show nothing. So, How can I solve ? Please help me.

                  类似mysql的预期输出演示

                  expected output demo of mysql like

                  product_name    category    product_images
                  ============    ========    ==============
                  men t-shirt     MEN         img1.jp,img2.jpg,img3.jpg
                  kids t-shirt    kids        img1.jp,img2.jpg,img3.jpg
                  

                  推荐答案

                  好了这里从A到Z的完整解答如何使用ajax上传多个文件,首先在视图中,你可以放尽可能多的文件输入你想要,但作为一个数组当然是这样的:

                  Ok here a complete answer from A to Z of how to upload multiple files using ajax, first of all in the view, you can put as many file inputs as you want but as an array of course like this:

                  <form enctype="multipart/form-data" action="<?php echo base_url('') ?>" method="post">
                      <input name="files[]" type="file" />
                      <input name="files[]" type="file" />
                      <input type="button" value="Upload" id="upload"/>
                  </form>
                  

                  然后你的 ajax 就这样,没有任何开销,只是一个正常的提交:

                  Then your ajax like this, no overhead whatsoever, just a normal submission:

                  $('#upload').click(function(e) {
                      e.preventDefault();
                      var formData = new FormData($(this).parents('form')[0]);
                      $.ajax({
                          url: "<?php echo base_url() ?>",
                          type: "POST",
                          data: formData,
                          processData: false,
                          contentType: false,
                          success: function(response) {
                  
                          },
                          error: function(response) {
                  
                          }
                      });
                  });
                  

                  但是这段代码会像这样传递 $_FILES:

                  But this code will pass $_FILES like this:

                  array(1) {
                      ["files"]=>
                      array(5) {
                          ["name"]=>
                          array(2) {
                              [0]=>
                              string(10) "imgOne.jpg"
                              [1]=>
                              string(31) "imgTwo.png"
                          }
                          ["type"]=>
                          array(2) {
                              [0]=>
                              string(10) "image/jpeg"
                              [1]=>
                              string(9) "image/png"
                          }
                          ["tmp_name"]=>
                          array(2) {
                              [0]=>
                              string(24) "C:xampp	mpphpF867.tmp"
                              [1]=>
                              string(24) "C:xampp	mpphpF878.tmp"
                          }
                          ["error"]=>
                          array(2) {
                              [0]=>
                              int(0)
                              [1]=>
                              int(0)
                          }
                          ["size"]=>
                          array(2) {
                              [0]=>
                              int(358419)
                              [1]=>
                              int(72657)
                          }
                      }
                  }
                  

                  这就是问题所在,所以我们必须像这样在控制器的方法中重新排列这个数组:

                  And that's the problem, so we have to rearrange this array in your controller's method like this:

                  $files = array();
                  foreach ($_FILES['files'] as $property => $array)
                  {
                      foreach ($array as $key => $value)
                      {
                          $files[$key][$property] = $value;
                      }
                  }
                  

                  这会给你一个像这样的正确数组:

                  And this will give you a proper array like this:

                  array(2) {
                      [0]=>
                      array(5) {
                          ["name"]=>
                          string(10) "imgOne.jpg"
                          ["type"]=>
                          string(10) "image/jpeg"
                          ["tmp_name"]=>
                          string(24) "C:xampp	mpphpF867.tmp"
                          ["error"]=>
                          int(0)
                          ["size"]=>
                          int(358419)
                      }
                      [1]=>
                      array(5) {
                          ["name"]=>
                          string(31) "imgTwo.png"
                          ["type"]=>
                          string(9) "image/png"
                          ["tmp_name"]=>
                          string(24) "C:xampp	mpphpF878.tmp"
                          ["error"]=>
                          int(0)
                          ["size"]=>
                          int(72657)
                      }
                  }
                  

                  现在你可以使用 CodeIgniter 循环遍历这个数组和 do_upload,但首先让我们用新数组重新初始化我们的 $_FILES 然后加载使用我们的配置上传库并像这样循环遍历它:

                  Now you can loop through this array and do_upload with CodeIgniter, but first lets reinitialize our $_FILES with the new array and then load upload library with our configs and loop through it like this:

                  $_FILES = $files;
                  $config['upload_path'] = FCPATH.'uploads/';
                  $config['allowed_types'] = 'gif|jpg|jpeg|png';
                  $config['max_size'] = '2048';
                  $this->load->library('upload', $config);
                  foreach ($_FILES as $fieldname => $fileobject)
                  {
                      if (!empty($fileobject['name']))
                      {
                          $this->upload->initialize($config);
                          if (!$this->upload->do_upload($fieldname))
                          {
                              $errors[$fileobject['name']] = $this->upload->display_errors();
                          }
                          else
                          {
                              $success[$fileobject['name']] = 'Success';
                          }
                      }
                  }
                  

                  就是这样.

                  这篇关于在 CodeIgniter 中通过 jQuery AJAX 插入和移动多个图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  PHP Upload File Validation(PHP 上传文件验证)
                  PHP Error - Uploading a file(PHP 错误 - 上传文件)
                  How can I write tests for file upload in PHP?(如何在 PHP 中编写文件上传测试?)
                  php resizing image on upload rotates the image when i don#39;t want it to(php在上传时调整图像大小会在我不想要它时旋转图像)
                  How to send additional data using PLupload?(如何使用 PLupload 发送附加数据?)
                  change button text in js/ajax after mp4 =gt;mp3 conversion in php(在 php 中的 mp4 =gt;mp3 转换后更改 js/ajax 中的按钮文本)
                  <i id='MfxxN'><tr id='MfxxN'><dt id='MfxxN'><q id='MfxxN'><span id='MfxxN'><b id='MfxxN'><form id='MfxxN'><ins id='MfxxN'></ins><ul id='MfxxN'></ul><sub id='MfxxN'></sub></form><legend id='MfxxN'></legend><bdo id='MfxxN'><pre id='MfxxN'><center id='MfxxN'></center></pre></bdo></b><th id='MfxxN'></th></span></q></dt></tr></i><div id='MfxxN'><tfoot id='MfxxN'></tfoot><dl id='MfxxN'><fieldset id='MfxxN'></fieldset></dl></div>
                    <tbody id='MfxxN'></tbody>
                  <legend id='MfxxN'><style id='MfxxN'><dir id='MfxxN'><q id='MfxxN'></q></dir></style></legend>

                  1. <small id='MfxxN'></small><noframes id='MfxxN'>

                      <bdo id='MfxxN'></bdo><ul id='MfxxN'></ul>

                          <tfoot id='MfxxN'></tfoot>