????????1.需求
????????传递文件类型的数据和其他类型的数据到后台。组件使用的是element-ui,就想去里面直接找组件使用,看到了el-upload,就试着用了一下,发送的是ajax请求,发现后台接收不到就开始找问题了。
? ? ? ? 2.问题
? ? ? ? 看了一下发送请求携带file文件协议有两种方法,链接(FormData 对象的使用 - Web API 接口参考 | MDN),form表单提交,另外一种是formData(h5里面的新方法),都很方便。因为我用的是vue,就用formData的格式进行传输。照着网站开始改吧~~
? ? ? ? 3.操作
? ? ? ? 3.1 网页文件
<el-dialog title="导出指定体检信息" :visible.sync="dialogVisibleexptbyfile" width="50%" center :append-to-body="true">
<div class="submit">
<el-form :model="form" label-width="130px" label-position="left">
<el-form-item label="xxx">
<el-select v-model="form.type" placeholder="请选择类型">
<el-option label="xxx" value="0"></el-option>
<el-option label="xxx" value="1"></el-option>
</el-select>
</el-form-item>
<el-form-item label="选择文件">
<el-upload class="upload-demo" :limit="1" :on-exceed="exceedfile" :headers="{headers: 'multipart/form-data'}" action="#" :on-change="onChangefile" :before-upload="beforeuploadfile" :auto-upload='false' :file-list="fileList">
<el-button size="small" type="primary">点击上传</el-button>
</el-upload>
<!-- <input type="file" id="file" ref="file" @change="selectFile"> -->
</el-form-item>
<el-form-item label="xxxxxx">
<el-input v-model="form.sheetIndex" style="width: 52%;"></el-input>
</el-form-item>
<el-form-item label="xxx">
<el-input v-model="form.startRow" style="width: 52%;"></el-input>
</el-form-item>
<el-form-item label="xxxx">
<el-input v-model="form.colNum" style="width: 52%;"></el-input>
</el-form-item>
</el-form>
</div>
<span slot="footer" class="dialog-footer">
<el-button @click="dialogVisibleexptbyfile = false">取 消</el-button>
<el-button type="primary" @click="exptbyfile">确 定 导 出</el-button>
</span>
</el-dialog>
data () {
return {
// 弹框显示和隐藏
dialogVisibleexptbyfile: false,
form: {
type: '',
sheetIndex: '1',
colNum: '1',
startRow: '1'
},
fileList: [],
file: null
};
}
? ? ? ? 3.2 点击提交的方法,看了element-ui上的解释,添加请求头?:headers="{headers: 'multipart/form-data'}",上传前的方法,:before-upload="beforeuploadfile",关闭自动上传的方法:auto-upload='false'。
<el-upload class="upload-demo" :limit="1" :on-exceed="exceedfile" :headers="{headers: 'multipart/form-data'}" action="#" :on-change="onChangefile" :before-upload="beforeuploadfile" :auto-upload='false' :file-list="fileList">
<el-button size="small" type="primary">点击上传</el-button>
</el-upload>
? ? ? ? 3.3 写方法
import {Utils} from 'xxxxxxxx'
methods: {
onChangefile (file) {
// file文件改变
var testmsg = file.name.substring(file.name.lastIndexOf('.') + 1)
//这里我需要上传表格文件,所以做了限制
if (['xls', 'xlsx'].indexOf(testmsg.toLowerCase()) == -1) {
this.$message.warning('只能上传.XLS.XLSX格式的文件!')
this.fileList.shift()
return
}
//将选取的文件拿到,这里需要根据自己业务来写
this.fileList[0] = file
this.file = file.raw
this.filename = file.name
},
// 只允许上传一个文件
exceedfile () {
this.$message.warning('只能上传一个文件,请删除后添加!')
},
beforeuploadfile (file) {
// console.log("beforeupload", file)
this.file = file
},
// 指定下载文件
exptbyfile () {
if (this.fileList.length == 0) {
this.$message.warning('请上传文件');
return
}
if (this.form.type == "") {
this.$message.warning('请选择类型');
return
}
const formData = new FormData() //FormData对象,添加参数只能通过append('key', value)的形式添加
formData.append('file', this.file) //添加文件对象 ,data中设置的
//调用上传接口
let userinfo = User.getData("userInfo");
var params = {
// 一些参数 XXXXX
type: this.form.type
};
// console.log(this.file);
// 直接掉用方法即可
Utils.upload(this.file, "xxxxxxx", params)
},
}
? ? ? ? 4.Utils的方法重点是添加processData: false,?contentType: false,如果没有jquery就下一个引入就可以了。
function upload (res, url, params = {}) {
return new Promise((resolve) => {
var formData = new FormData();
formData.append("file", res);
for (var i in params) {
formData.append(i, params[i]);
}
$.ajax({
url: baseURl + url,
type: "POST",
data: formData,
cache: false, //上传文件无需缓存
processData: false, //用于对data参数进行序列化处理 这里必须false ~~~~~~重点一定要写
contentType: false, //必须*/ // ~~~~~~重点一定要写
success: function (data) { console.log(data)
if (data.code == 0) {
resolve(data.data);
} else {
showTis("上传错误,请联系管理员", 'error')
}
},
});
})
}
export default {
upload
}
这样后台就可以接受到数据了。总结:
? ? ? ? 1.利用Formdata对数据进行操作。
? ? ? ? 2.jquery需要添加两个参数设置。
|