vue下载后台返回excel asyncexportdata1(){constres=awaitthis.$axios.get('url',{responseType:'blob'})constblob=newBlob([res.data],{type:'application/vnd.ms-excel'})constobjectUrl=URL.createObjectURL(blob)window.location.href=...
el-form校验 输入了内容识别不出来 多层嵌套数据格式 最开始代码如下:<el-form ref="submitRef" :model="submitForm" :rules="submitRules"><el-form-itemlabel="乡/镇:"prop="township"><el-selectv-model="submitForm.info.township" placeholder="请选择乡镇"> ...
TypeError: dateObject.getTime is not a function报错 把校验rules里面的 type="date"去掉<el-date-picker type="date" placeholder="选择日期" v-model="form.date" value-format="yyyy-MM-dd"> </el-date-picker>上面value-format="yyyy-MM-dd"已经将数据格式转换了
Vue cli3解决跨域方法 前端地址:127.0.0.1后端地址:127.0.0.2当访问地址为 127.0.0.1/api,没有匹配到这地址,那么就会被转发到代理服务器127.0.0.2/api新建vue.config.jsmodule.exports={ devServer:{ proxy: "http://www.acfun.cn" }}...