input type=file accept中可以限制的文件类型
在上传文件的时候,需要限制指定的文件类型。 <input type="file" accept="image/*" /> accept表示可以上传文件类型,image表示图片,*表示所有支持的格式。 image/* ,允许上传所有图片格式 accept可以指定如下信息: …
569 2019-08-08 去围观微信jssdk授权签名以及config配置
凡是要想在h5页面使用jweixin.js的功能就必须授权签名才行。以下流程 1,申请公众账号测试 或者 是已经有了公众号 https://mp.weixin.qq.com/debug/cgi-bin/sandboxinfo?action=showinfo&t=sandbox/index 2,用appID和 appsecret来换取access_token a…
1,259 2019-07-28 去围观base64、blob和file数据类型相互转换并使用FormData模拟表单上传
涉及到new FileReader()、new File()、new FormData()、createObjectURL() 上传 压缩 FormData js模拟表单上传 var formData = new FormData(); formData.append("type","2"); formData.append("file",blob,"recorder.mp3"); //添加上传blob数据类型 formData.…
1,240 2019-07-19 去围观