我有一个问题可以解决我的问题。我的问题是获得本地图像的完整路径。 我的路径为:“/ fipcurren / mytestfolder / imgs / school.jpeg”,我的程序显示“C:\ fakepath \ school.jpg”。
获取路径的代码是:
在HTML文件中:
<input id="imagePath" class="file" type="file" multiple data-min-file-count="1" accept="image/*">
在JavaScript文件中:
data.imagePath = document.getElementById("imagePath").value;
我尝试上面这个,但没有解决问题:
data.imagePath = document.getElementById("imagePath").files[0].name;
有人帮帮我吗?
感谢