FLASK+VUE+axios前后端交互

简介: FLASK+VUE+axios前后端交互

概述

1.png

1.flask提供接口,axios调用接口得到数据,vue将数据渲染到页面上。


2.存在问题:跨域请求的报错;解析json数据的问题。


vue+axios


首先,创建好一个vue项目。(这个网上资源很多),然后在项目的目录下用命令行导入axios

npm install axios

然后,在你vue项目下的main.js配置好axios.

import axios from 'axios'
Vue.prototype.$axios = axios

我的src目录是这样的,创建一个class.vue的组件,与flask的交互就是在这里面的。当然,要在router里面配置好路由,在app里面渲染出来。

2.png

这是路由,class的路径就是加入进去的class.vue的路由。

import Vue from 'vue'
import VueRouter from 'vue-router'
import Home from '../views/Home.vue'
Vue.use(VueRouter)
const routes = [
  {
    path: '/',
    name: 'Home',
    component: Home
  },
  {
    path: '/about',
    name: 'About',
    component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
  },
  {
    path: '/class',
    name: 'class',
    component: () => import(/* webpackChunkName: "about" */ '../views/class.vue')
  }
]
const router = new VueRouter({
  routes
})
export default router

3.pngapp里随便配置一下。这样你的组件就能渲染出来。

  <div id="app">
    <router-view/>
  </div>

基本配置就算好了,下面就是组件里的实现了。


一个form表单,这是效果图,getdata里的数据是设置好的,等到文件上传后,后台返回的结果会更新这些数据。

<form  enctype=multipart/form-data>
            <p></p>
            <input type="file" @change="getFile($event)">
            <button @click="submitForm($event)">提交</button>
          </form></a-layout-content>
        <a-layout-sider>
          <p></p>
          <span>{{getdata.classify}}</span>
          <p></p>
          <span>{{getdata.state}}</span>
          <p></p>
          <span>{{getdata.type}}</span>

3.png

下面是calss.vue的script,data里就是预先随便设置的数据,methods里面用来存放方法。主要看这里,axios.post一个表单数据(里面是图片),到指定的url,这里就是flask提供的接口。我们通过var msg = response.data

that.getdata = msg。将flak返回的json数据绑定到data中,然后就会在页面中渲染出来。

// A code block
 this.$axios.post('http://localhost:8280/upload', formData, config).then(function (response) 


export default {
  name: 'class',
  data: function () {
    return {
      getdata: {
        classify: '**',
        state: '**',
        type: '**'
      }
    }
  },
  methods: {
    getFile (event) {
      this.file = event.target.files[0]
      console.log(this.file)
      console.log(1111)
    },
    submitForm (event) {
      event.preventDefault()
      const formData = new FormData()
      formData.append('file', this.file)
      var that = this
      const config = {
        headers: {
          'Content-Type': 'multipart/form-data'
        }
      }
      this.$axios.post('http://localhost:8280/upload', formData, config).then(function (response) {
        if (response.status === 200) {
          var msg = response.data
          that.getdata = msg
          console.log(response.data.classify)
          console.log(response.data)
          console.log(222)
        }
      })
    }
  }
}

下面是完整代码

<template>
  <div>
    <a-layout>
      <a-layout-header>Header</a-layout-header>
      <a-layout>
        <a-layout-content><h1>下面是测试</h1>
          <form  enctype=multipart/form-data>
            <p></p>
            <input type="file" @change="getFile($event)">
            <button @click="submitForm($event)">提交</button>
          </form></a-layout-content>
        <a-layout-sider>
          <p></p>
          <span>{{getdata.classify}}</span>
          <p></p>
          <span>{{getdata.state}}</span>
          <p></p>
          <span>{{getdata.type}}</span>
        </a-layout-sider>
      </a-layout>
      <a-layout-footer>Footer</a-layout-footer>
    </a-layout>
    </div>
</template>
<script>
export default {
  name: 'class',
  data: function () {
    return {
      getdata: {
        classify: '**',
        state: '**',
        type: '**'
      }
    }
  },
  methods: {
    getFile (event) {
      this.file = event.target.files[0]
      console.log(this.file)
      console.log(1111)
    },
    submitForm (event) {
      event.preventDefault()
      const formData = new FormData()
      formData.append('file', this.file)
      var that = this
      const config = {
        headers: {
          'Content-Type': 'multipart/form-data'
        }
      }
      this.$axios.post('http://localhost:8280/upload', formData, config).then(function (response) {
        if (response.status === 200) {
          var msg = response.data
          that.getdata = msg
          console.log(response.data.classify)
          console.log(response.data)
          console.log(222)
        }
      })
    }
  }
}
</script>
<style scoped>
</style>

flask


下面是flask的代码,from flask_cors import CORS


CORS(app, resources=r’/*')这是解决跨域请求报错的设置。

from flask import Flask
from flask import request, jsonify,render_template
import base64
import cv2
import os
import time
from werkzeug.utils import secure_filename
import detection_mobilenetv2 as test
from flask_cors import CORS
app = Flask(__name__)
CORS(app, resources=r'/*')
@app.route('/')
def hello_world():
    app.logger.error("sss")
    return 'Hello World!'
//这里是主要接口测试路径
@app.route('/upload', methods=['POST', 'GET'])
def upload():
    if request.method == 'POST':
        f = request.files['file']
        basepath = os.path.dirname(__file__)
//把接受的文件报错起来
        upload_path = os.path.join(basepath, 'static\\img', secure_filename(f.filename))
        fname, fename = os.path.split(upload_path)
        f.save(upload_path)
//你的项目对这张图片干的事
        total,nomask=test.pic_show(upload_path)
  //json数据返回
        result_dict = dict()
        result_dict["classify"] = "mask_detect"
        result_dict["state"] = "-1"
        result_dict["type"] = "noFace"
        return jsonify(result_dict)
if __name__ == '__main__':
    app.run(host="0.0.0.0",port=8280,debug=False)

大概就是这样了。

目录
相关文章
|
1月前
|
资源调度 JavaScript
|
1月前
|
缓存 JavaScript 搜索推荐
|
3月前
|
JavaScript 前端开发
【Vue面试题二十七】、你了解axios的原理吗?有看过它的源码吗?
文章讨论了Vue项目目录结构的设计原则和实践,强调了项目结构清晰的重要性,提出了包括语义一致性、单一入口/出口、就近原则、公共文件的绝对路径引用等原则,并展示了单页面和多页面Vue项目的目录结构示例。
|
2月前
|
JavaScript 前端开发 开发者
vue中使用axios请求post接口,请求会发送两次
vue中使用axios请求post接口,请求会发送两次
|
29天前
|
前端开发 JavaScript 安全
在vue前端开发中基于refreshToken和axios拦截器实现token的无感刷新
在vue前端开发中基于refreshToken和axios拦截器实现token的无感刷新
82 4
|
2月前
|
JavaScript
vue 中 axios 的安装及使用
本文介绍了在Vue项目中安装和使用axios的方法。首先通过命令`npm install axios --save-dev`安装axios,然后在组件的`created`生命周期钩子中使用`axios.get`异步获取数据,并将获取的数据更新到组件的`data`中。文中提供了完整的示例代码,包括安装命令、验证安装成功的步骤、Vue组件的模板、脚本和样式。
vue 中 axios 的安装及使用
|
2月前
|
JSON 资源调度 JavaScript
Vue框架中Ajax请求的实现方式:使用axios库或fetch API
选择 `axios`还是 `fetch`取决于项目需求和个人偏好。`axios`提供了更丰富的API和更灵活的错误处理方式,适用于需要复杂请求配置的场景。而 `fetch`作为现代浏览器的原生API,使用起来更为简洁,但在旧浏览器兼容性和某些高级特性上可能略显不足。无论选择哪种方式,它们都能有效地在Vue应用中实现Ajax请求的功能。
41 4
|
2月前
|
JavaScript 前端开发
vue配合axios连接express搭建的node服务器接口_简单案例
文章介绍了如何使用Express框架搭建一个简单的Node服务器,并使用Vue结合Axios进行前端开发和接口调用,同时讨论了开发过程中遇到的跨域问题及其解决方案。
56 0
vue配合axios连接express搭建的node服务器接口_简单案例
|
1月前
|
JavaScript API 开发工具
vue尚品汇商城项目-day02【11.对axios二次封装+12.接口统一管理】
vue尚品汇商城项目-day02【11.对axios二次封装+12.接口统一管理】
31 0