How to store uploaded file into server path using

2019-09-11 16:40发布

I want to know that how can I store my uploaded file from my local system into one server path like('/newfolder/tests/') using either javascript or jquery, Please provide me any solution for it as I'm new to this Files system.

html:

  <input type="file" id="inputfile" name="inputfile"></input>

js:

  var path =$('input[type=file]').val().replace(/C:\\fakepath\\/i, '');

is giving my uploaded file names only`, so that I need to store/save this variable on any server path(or any File system path),and I'm not using any database here, so that I can grab it from that path and can display it on my view page.

1条回答
放我归山
2楼-- · 2019-09-11 17:15

Try This

$('#imageInput').change(function(){
var frm = new FormData();
frm.append('imageInput', input.files[0]);
$.ajax({
    method: 'POST',
    address: 'url/to/save/image',
    data: frm,
    contentType: false,
    processData: false,
    cache: false
});

});

查看更多
登录 后发表回答