如何从ajax中获取laravel控制器(API)中的多个图像数据?

时间:2017-04-13 14:20:33

标签: php jquery ajax laravel laravel-5.4

我的表格:

<form enctype="multipart/form-data" method="post" id="createProduct">
{{ csrf_field() }}
<input required name="name" type="text">
<textarea name="description"></textarea>
<input id="imageToUpload" type="file"name="images[]" multiple/>
<input type="submit" value="submit"/>
</form>

我的剧本:

$(document).ready(function(){
$.ajaxSetup({
    headers: {
        'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
    }
});
$('#createProduct').on('submit', function(e){
e.preventDefault(e);
var redirect_url = "{{ route('products.list') }}";
var url = "{{ route('products.store') }}";
var method = $(this).attr('method');
var formData = new FormData;
for(var i = 0; i < images.length; i++){
  formData.append(images[i].name, images[i])
}
var myData = {
  name: $(this).find("[name='name']").val(),
  description: $(this).find("[name='description']").val(),
  images: formData
}
$.ajax({
  type: method,
  url: url,
  dataType: 'JSON',
  data: myData,
  cache: false,
  contentType: false,
  processData: false,
  success: function(data){
    console.log(data);
    window.location.href = redirect_url;
  },
  error: function(jqXHR, textStatus, errorThrown) {
      console.log(JSON.stringify(jqXHR));
      console.log("AJAX error: " + textStatus + ' : ' + errorThrown);
  }
});
});

我的控制器:

public function store(Request $request){
$input = Input::all();
return Response::json([
     'message' => 'Product Created Succesfully',
     'data' => $input 
], 200);

如何将数据(带图像)从表单发送到ajax

如何从控制器中的ajax到store(API)函数检索数据(带图像)。

以便我可以处理和保存文件。

1 个答案:

答案 0 :(得分:0)

您将图像存储为base64编码的字符串并将其传递给服务器,然后将其作为图像转换回来。

为此,请监听图像输入的更改,并使用FileReader将图像转换为base 64:

$("#imageToUpload").change(function() {
 var file = $(this).prop("files")[0];
    if (file != undefined) {
        var reader = new FileReader();

        reader.addEventListener("loadstart", function() {
            // You can do something to tell the user the conversion started
        });

        // Store the file as a base64 string
        reader.addEventListener("load", function() {
            myData.image = reader.result;
            // Get the name of the file, removing the path
            myData.imageName = $(this).val().replace(/^.*[\\\/]/, '')
        });

        reader.readAsDataURL(file);
    }
});

然后在控制器中读取它并将其与file_put_contents()一起存储:

// Get rid of the base64 header to parse the image
list($type, $input->image) = explode(';', $input->image);
list(, $input->image)      = explode(',', $input->image);
// Store the image
file_put_contents("/your/path" . $input->imageName, base64_decode($input->image));

我怀疑这段代码是完全无懈可击的,但应该是一个很好的起点。