当前位置:   article > 正文

Flask 通过Axios库前后端交互_flask框架前后端传字符串

flask框架前后端传字符串

Axios 是一个基于promise的HTTP库,该库是一个更好的替代ajax向后端发送数据或请求数据的前端组件库,其本质上也是对原生XHR的封装,只不过它是Promise的实现版本,符合最新的ES规范,如下案例运用axios向后端提交JSON字符串,后端通过Flask响应请求并处理。

前端发送数据的第一种方式。

  1. <head>
  2. <script src="https://www.lyshark.com/javascript/axios/0.26.0/axios.min.js"></script>
  3. </head>
  4. <body>
  5. <input type="text" name="name" id="name" />
  6. <input type="text" name="age" id="age" />
  7. <button onclick="saveHanderPost()" >提交</button>
  8. <script type="text/javascript">
  9. function saveHanderPost()
  10. {
  11. let name = document.getElementById("name").value;
  12. let age = document.getElementById("age").value;
  13. axios.post("/",{
  14. name:name,
  15. age:age
  16. })
  17. .then(function(response){
  18. console.log(response);
  19. console.log(response.data.username);
  20. console.log(response.data.message);
  21. })
  22. .catch(function(error){
  23. console.log(error);
  24. })
  25. }
  26. </script>

前端发送数据的第二种方式。

  1. <script type="text/javascript">
  2. function saveHanderPost()
  3. {
  4. let name = document.getElementById("name").value;
  5. let age = document.getElementById("age").value;
  6. axios({
  7. url: "/",
  8. method: "post",
  9. data: {
  10. name: name,
  11. age:age
  12. },
  13. responseType: "text/json",
  14. })
  15. .then(function(response){
  16. console.log(response);
  17. console.log(response.data.username);
  18. console.log(response.data.message);
  19. })
  20. .catch(function(error){
  21. console.log(error);
  22. })
  23. }
  24. </script>

Python后端使用Flask接收并处理前端发送过来的JSON字符串。

  1. from flask import Flask
  2. from flask import render_template,request
  3. import json
  4. app = Flask(__name__)
  5. @app.route('/',methods=['GET','POST'])
  6. def hello_world():
  7. if request.method == "GET":
  8. return render_template("index.html")
  9. elif request.method == "POST":
  10. val = request.get_json()
  11. print("收到用户: {} ---> 年龄: {}".format(val["name"],val["age"]))
  12. # 返回JSON类型
  13. return json.dumps({"username": "lyshark","message": "hello lyshark"})
  14. if __name__ == '__main__':
  15. app.run()
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/66556
推荐阅读
相关标签
  

闽ICP备14008679号