2021
07-08
07-08
Vue和Flask通信的实现
安装axios和实现通信这里我们通过axios来连接Vue前端和Flask后端,使用AJAX请求进行通信。使用如下命令安装npminstallaxiosaxios的使用格式:importaxiosfrom'axios';exportdefault{data:function(){return{serverResponse:'res_test'};},methods:{getData(){//设置对应python的接口,这里使用的是localhost:5000constpath='http://127.0.0.1:5000/getM...
继续阅读 >