博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
16.关于 file API 和 formdata
阅读量:6614 次
发布时间:2019-06-24

本文共 1164 字,大约阅读时间需要 3 分钟。

1. 上一节中: $('#file')[0].files[0]。 写法不是很懂

参考 : https://developer.mozilla.org/en-US/docs/Using_files_from_web_applications

Using the File API, which was added to the DOM in HTML5, it's now possible for web content to ask the user to select local files and then read the contents of those files. This selection can be done by either using an HTML  element or by drag and drop.

 

Accessing selected file(s)EDITConsider this HTML:The File API makes it possible to access a FileList containing File objects representing the files selected by the user.If the user selects just one file, it is then only necessary to consider the first file of the list.Accessing one selected file using a classical DOM selector:var selectedFile = document.getElementById('input').files[0];Accessing one selected file using a jQuery selector:var selectedFile = $('#input').get(0).files[0];var selectedFile = $('#input')[0].files[0];

 

2.

Formdata的构造函数:https://developer.mozilla.org/zh-CN/docs/Web/API/FormData/FormData

参数

form 
可选,一个HTML 上的 表单元素——这种方式创建的 对象会自动将form中的表单值也包含进去,包括文件内容也会被编码之后包含进去。 php利用 name = file 来查询就可以 3.
chrome console.log 太好用

 

转载于:https://www.cnblogs.com/rabbitq/p/5869511.html

你可能感兴趣的文章
关于IT服务管理的服务台
查看>>
rundeck 修改密码 添加节点
查看>>
解决Nginx不支持ThinkPHP配置PATHINFO问题
查看>>
用R语言做数据分析(7)——数据的输入与输出之Scan函数
查看>>
IT讲师韩顺平:创业不易,尚硅谷延续教育初心
查看>>
IntelliJ IDEA 插件 阿里巴巴Java开发手册
查看>>
利用nmap对Mongodb Redis未授权访问测试
查看>>
CakePHP
查看>>
我的友情链接
查看>>
sample-envoy-proxy
查看>>
编译mysql5.6.27
查看>>
搭建centos6.7网站服务器记录
查看>>
我的友情链接
查看>>
Release版本调用ffmpeg av_register_all程序崩溃
查看>>
【CetOS 7LAMP架构6】,Apache默认虚拟主机#171220
查看>>
我的友情链接
查看>>
Referenced management pack not found
查看>>
jquery中data函数的用法示例
查看>>
巧用strtotime函数计算日期
查看>>
JVM中java对象的生命周期
查看>>