企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[toc] ### 1. 获取文件列表的数据 ### 2. 对获取到的数据进行处理 ``` //index.vue //对请求到的数据进行处理 formatList(data){ return data.map(item=>{ item.type = item.ext === '' ? 'dir' : item.ext.substring(0,item.ext.lastIndexOf('/')) item.checked = false return item }) }, // 加载数据 getData(){ this.axios.get('/api/file?file_id=0',{ token:true, }).then(res=>{ let list = this.formatList(res.data) this.list = list }) }, ```