我有一个 beego 应用程序,我需要将图像从客户端上传到服务器位置。
//Till now I have tried the following script
$("#fileupload").on("click",function(){
$("#my_file").click();
userImage = document.getElementById('fileupload');
imgData = getBase64Image(userImage);
localStorage.setItem("imgData", imgData);
});
<!--Html where i have kept option for image upload-->
<ul>
<li style="margin-top:5px;"> .Hii vijay </li>
<li><input type="file" id="my_file" style="display: none;" /></li>
<li><img id="fileupload" name="filetoupload" src="../../static/img/img.png"></li>
</ul>
使用此脚本,当我单击空图像(单击此处添加)时,它会显示浏览文件选项。选择图像后,不会发生任何操作。我的要求是从浏览选项中选择图像,所选图像应保存在服务器位置。