先安装axiosnpm install axios然后在vue页面中进行编码:import axios from axios;export default {name: App,components: {},data: function(){return {my_pics: []}},methods: {getPicList(pic_dir) {const ...
先安装axios
npm install axios
然后在vue页面中进行编码:
import axios from 'axios';
export default {
name: 'App',
components: {
},
data: function(){
return {
my_pics: []
}
},
methods: {
getPicList(pic_dir) {
const path = 'http://127.0.0.1:5000/folder/'+pic_dir;
axios.get(path, null, { params: {root:pic_dir}})
.then((res) => {
this.my_pics = res.data;
})
.catch((error) => {
// eslint-disable-next-line
console.error(error);
});
}
},
created() {
},
}
沃梦达教程
本文标题为:Vue中的前后台交互


猜你喜欢
- layui数据表格以及传数据方式 2022-12-13
- vue keep-alive 2023-10-08
- JS实现左侧菜单工具栏 2022-08-31
- 深入浅析AjaxFileUpload实现单个文件的 Ajax 文件上传库 2022-12-15
- jsPlumb+vue创建字段映射关系 2023-10-08
- javascript 判断当前浏览器版本并判断ie版本 2023-08-08
- 关于 html:如何从 css 表中删除边距和填充 2022-09-21
- ajax实现输入提示效果 2023-02-14
- 基于CORS实现WebApi Ajax 跨域请求解决方法 2023-02-14
- 1 Vue - 简介 2023-10-08