猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
nodejs怎么模拟input type=file拿到filelist
nodejs怎么得到html中点击<input type="file">选中文件后得到的filelist
哆啦的时光机
浏览 1341
回答 1
1回答
函数式编程
TALK IS CHECAP, SHOW ME THE CODE<html><body> <form> <div> <label>Select file to upload</label> <input type="file"> </div> <button id="taozhi" type="submit">Convert</button> </form> <script> var p = document.getElementById("taozhi"); p.onclick = showAlert; function showAlert(event) { // 这就是你需要的吧!!input.files获取选中文件之后的filelist const input = document.querySelector('input[type="file"]') const file = input.files[0] let formData = new FormData(); formData.append('image', file); fetch('http://localhost:8001/upload',{ method:'post', body:formData, }) .then((response) => response.json() ) .then((response)=>{ console.log(response) }) .catch((err)=>console.error(err)); } </script></body></html>
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
JavaScript
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续