- 博客(4)
- 收藏
- 关注
原创 node中multer模块配合ajax实现文件上传
前端页面:<body> <h2>预览图片</h2> <img src="" id="ac"> <form method="post" enctype="multipart/form-data"> <input type="file" id="file"> <br/> </form> <input type="button" value="上传"
2021-10-18 15:19:01
154
原创 node中multer模块实现文件上传
html页面:<body> <!-- enctype="multipart/form-data" 一定要设置--> <form action="/addfile" method="post" enctype="multipart/form-data"> <!-- name属性值要与后端请求保持一致 --> <input type="file" id="a" name="file"> <br
2021-10-18 15:07:15
163
原创 node与ajax发送post请求进行数据交互
前端页面:<body> <p> <input type="text" id="username"> </p> <p> <input type="text" id="age"> </p> <p> <input type="button" value="提交" id="btn"> </p>
2021-10-18 14:53:23
244
原创 node与ajax发送get请求进行数据交互
前端页面:<body> <p> <input type="text" id="username"> </p> <p> <input type="text" id="age"> </p> <p> <input type="button" value="提交" id="btn"> </p>
2021-10-18 14:46:11
151
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人