欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Vue和Flask通信的实现

程序员文章站 2024-01-01 16:10:04
安装axios和实现通信这里我们通过axios来连接vue前端和flask后端,使用ajax请求进行通信。使用如下命令安装npm install axiosaxios的使用格式:import axio...

安装axios和实现通信

这里我们通过axios来连接vue前端和flask后端,使用ajax请求进行通信。使用如下命令安装

npm install axios

axios的使用格式:

import axios from 'axios';
  export default {
    data: function () {
      return {
        serverresponse: 'res_test'
      };
    },
    methods: {
      getdata() {
        // 设置对应python的接口,这里使用的是localhost:5000
        const path = 'http://127.0.0.1:5000/getmsg';
        // 这里要使用 res =>表示返回的数据
        axios.get(path).then(res => {
          // 这里服务器返回response为一个json对象
          // 通过.data来访返回的数据,然后在通过.变量名进行访问
          // 可以直接通过response.data取得key-value
          var msg = res.data.msg;
          this.serverresponse = msg; // 因为不能直接使用this作为指针,因此在这之前将this赋给了then指针
          alter('success' + response.status + ',' + response.data + ',' + msg); // 成功后显示提示
        }).catch(error => {
          console.error(error);
        });
      }
    },
  }

代码及演示

前端代码

对./components/helloworld.vue文件进行改写。代码如下:

<!-- html部分 -->
<template>
  <div>
    <span>{{ serverresponse }}</span>
    <!--这里使用{{}}来引用javascript中赋给this的值-->
    <button @click="getdata">get data</button>
  </div>
</template>
<!-- js部分 -->
<script>
  import axios from 'axios';
  export default {
    data: function () {
      return {
        serverresponse: 'res_test'
      };
    },
    methods: {
      getdata() {
        // 设置对应python的接口,这里使用的是localhost:5000
        const path = 'http://127.0.0.1:5000/getmsg';
        axios.get(path).then(res => {
          // 这里服务器返回response为一个json对象
          // 通过.data来访返回的数据,然后在通过.变量名进行访问
          // 可以直接通过response.data取得key-value
          var msg = res.data.msg;
          this.serverresponse = msg; // 因为不能直接使用this作为指针,因此在这之前将this赋给了then指针
          alter('success' + response.status + ',' + response.data + ',' + msg); // 成功后显示提示
        }).catch(error => {
          console.error(error);
        });
      }
    },
  }
</script>
<!-- css部分 -->
<!-- add "scoped" attribute to limit css to this component only -->
<style scoped>
  h1,
  h2 {
    font-weight: normal;
  }

  ul {
    list-style-type: none;
    padding: 0;
  }

  li {
    display: inline-block;
    margin: 0 10px;
  }

  a {
    color: #42b983;
  }
</style>

这里主要实现了通过单击按钮来和服务器端进行交互获得数据并传回前端,将得到的数据重新来对前端进行渲染。

Vue和Flask通信的实现

得到如上页面之后,我们单击get date按钮,就会像后端发送get请求,后端服务器监听到请求之后就会返回对应的数据。

Vue和Flask通信的实现

客户端代码

from flask import flask
from flask import jsonify
from flask_cors import cors

app = flask(__name__)
cors = cors(app, resources={r"/getmsg": {"origins": "*"}})


@app.route('/')
def hello_world():
    return 'test!'

# 监听127.0.0.1:5000/getmsg请求
@app.route('/getmsg', methods=['get', 'post'])
def home():
    response = {
        'msg': 'hello, python !'
    }
    return response


if __name__ == '__main__':
    app.run()

到此这篇关于vue和flask通信的实现的文章就介绍到这了,更多相关vue和flask通信内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: Vue Flask 通信

上一篇:

下一篇: