读取地址返回的json,修改后上传json文件
2021-05-30 16:06
标签:imp upload date click 直接 round function orm append 读取地址返回的json,修改后上传json文件 标签:imp upload date click 直接 round function orm append 原文地址:https://www.cnblogs.com/yixiaoyang-/p/14663413.html// 上传首页数据设置、主题js文件
export function uplaodTheme(data, fileName) {
var dataString = JSON.stringify(data);
var blob = new Blob([dataString], {type: "text/plain;charset=utf-8"});//将数据转换为blob对象
let themeFile = new File([blob],fileName,{lastModified:Date.now()})//blob转file
// var a = document.createElement(‘a‘)
// a.href =URL.createObjectURL(themeFile)
// document.body.appendChild(a)
// a.click()
// document.body.removeChild(a)
var formData = new FormData();
formData.append("file", themeFile);
postAjax(`${url}${filesUrl}/system/config/upload`,formData).then(res=>{
console.log(‘upload-------‘, res)
})
console.log(‘themeFile‘, themeFile)
}import {uplaodTheme} from "../../../../assets/js/base";
// 上传文件
uplaodTheme(this.$store.state.indexData,‘theme.json‘);
拉去地址数据,直接用get请求访问地址
下一篇:vue.js与vue3
文章标题:读取地址返回的json,修改后上传json文件
文章链接:http://soscw.com/index.php/essay/89619.html