我想要获取文件输入的javascript并将其保存到本地路径
<input type="file" name="attachment1" id="attachment1" style="width:500;">
<script>
//javascript--variable to assign the above file and its name
//Then save it to local path(some where in C drive)
</script>
答案 0 :(得分:0)
JavaScript是一种通常在本地计算机上运行的语言。因此,每次向该PC发送一些JavaScript时,您都会向您的代码运行的PC发送潜在的线程。
为了防止滥用,计算机可以免受诸如自动下载病毒之类的有害内容的影响,并将其存储在C驱动器的某个位置。
如果您想将其保存在服务器上,请查看Node.js。