首页 > 开发 > JS > 正文

Javascript读取上传文件内容/类型/字节数

2024-05-06 16:50:25
字体:
来源:转载
供稿:网友

在网站开发的某些情况下我们需要上传文件到服务器,在这个过程中可能会对文件做一定的限制,比如说文件格式,文件大小等,在一些情况下我们上传文件其实是为了获取其中的内容在前端区域展示,这个时候就不需要将文件上传到服务器,完全可以通过Javascript来获取上传文件内容然后进行展示,既加快了操作速度,也减轻了服务器的负载和存储。接下来就是一个实际操作的过程:

首先来看一下一个上传文件对象的属性:

Javascript,读取,上传文件

UI设计(React+Material-ui)

...const styles = theme => ({formControl: { margin: theme.spacing.unit, minWidth: 120, width: '100%', }, leftIcon: { marginRight: theme.spacing.unit, } })... <Grid item xs> <FormControl  className={classes.formControl}  error={this.state.Err.includes('sqlStr')} >  <TextField  label="SQL"  onChange={this.onTextChange('sqlStr')}  value={this.state.sqlStr}  placeholder="Add Select SQL here..."  multiline  InputLabelProps={{   shrink: true,  }}  fullWidth  rows={6}  variant="outlined"  />  <FormHelperText>{this.state.sqlStrErr}</FormHelperText>  <input  style={{display: 'none'}}  name="uploadSqlFile"  id="uploadSqlFile"  onChange={this.handleUploadSqlFile}  type="file"  />  <label htmlFor="uploadSqlFile" style={{position: 'absolute', right: '0px',bottom: '20px', background:'#f5f0ff'}}>  <Button color="primary" variant="outlined" component="span">  <CloudUploadOutlined className={classes.leftIcon} />OR UPLOAD SQL FILE  </Button>  </label> </FormControl> </Grid> ...

效果图如下:

Javascript,读取,上传文件

操作绑定,分别包含前端文件内容读取和文件上传

handleUploadSqlFile = event => { let that = this const selectedFile = event.target.files[0] if(selectedFile.type.includes('text') || selectedFile.type === ''){  let reader = new FileReader();// !important  reader.readAsText(selectedFile, "UTF-8");// !important  reader.onload = function(evt){// !important  let sqlStr = evt.target.result;// !important  that.setState({  Err: that.state.Err.filter(c => c !== 'sqlStr'),  sqlStr: sqlStr,  sqlStrErr: '*Avoid duplicated column fields',  }) } }else {  let sqlStrErr = 'File format is not supported!'  if ((selectedFile.size / 1024 / 1024).toFixed(4) >= 2) {//计算文件大小并且换算成M为单位  sqlStrErr = 'File size exceeds the limitation (2M)!'  }  this.setState({  Err: [...this.state.Err, 'sqlStr'],  sqlStrErr: sqlStrErr  }) }}

上边的示例只是单纯的前端文件内容读取,并未涉及文件上传到服务器,接下来是:

import axios from 'axios'...handleUploadSqlFile = event => { const selectedFile = event.target.files[0] if ((selectedFile.size / 1024 / 1024).toFixed(4) >= 10) {  this.setState({ sqlStrErr: 'File size exceeds the limitation (10M)!' }) } else {  const data = new FormData()  data.append('file', selectedFile, selectedFile.name)  axios  .post('/api/utils/upload_file', data, {   onUploadProgress: ProgressEvent => {   this.setState({    loaded: (ProgressEvent.loaded / ProgressEvent.total) * 100 - Math.random() * 16,//此值用来展示上传进度,好让用户知道目前的上传状态。   })   },  })  .then(res => {   if (res.data.code === -1) {   this.setState({ sqlStrErr: res.data.info })   } else {   this.setState({    loaded: 100,   })   }  }) } }

如果看了上边的代码示例还搞不定欢迎留言提问!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持VeVb武林网。


注:相关教程知识阅读请移步到JavaScript/Ajax教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表