Vue 前后端交互

Posted article-record

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 前后端交互相关的知识,希望对你有一定的参考价值。

异步调用

  • 异步效果 : 事件函数 Ajax 定时任务
  • 多次异步调用依赖
    • 多次调用异步, 结果顺序不确定, 如果需要固定顺序, 必须使用嵌套

Promise 概述

Promise 是异步编程的一种解决方案 , 从语法上讲 Promise 是一个对象 , 从它可以获取到异步操作的消息;

  • 可以避免多层异步调用嵌套问题
  • Promise 对象提供了简洁的 api 可以轻松控制异步操作
// resolve 正确的回调 reject 错误的回调
var p = new Promise(function (resolve, reject) {
  var flag = true
  setTimeout(function () {
    if (flag) {
      resolve(‘success...‘)
    } else {
      reject(‘error...‘)
    }
  }, 2000)
})
// then 方法接收 resolve 和 reject 的返回
p.then(function (res) {
  console.log(res)
}, function (err) {
  console.log(err)
})

Promise 封装原生 Ajax

query(url) {
  return new Promise(function (resolve, reject) {
    var xhr = new XMLHttpRequest()
    xhr.onload = function () {
      if (xhr.status === 200) {
        resolve(xhr.responseText)
      } else {
        reject(‘error...‘)
      }
    }
    xhr.open(‘get‘, url)
    xhr.send(null)
  })
}
// 多重接口调用
query(‘http://localhost:3000/data‘)
  .then(function(res) {
    console.log(res)
    return query(‘http://localhost:3000/data1‘)
  })
  .then(function (res) {
    console.log(res)
    return query(‘http://localhost:3000/data2‘)
  })
  .then(function (res) {
    console.log(res)
  })

以上是关于Vue 前后端交互的主要内容,如果未能解决你的问题,请参考以下文章

Springboot项目中运用vue+ElementUI+echarts前后端交互实现动态圆环图

前后端分离之使用axios进行前后端交互实现评论显示——django+mysql+vue+element

前后端分离之使用axios进行前后端交互实现评论显示——django+mysql+vue+element

前后端分离实践——Jsonp数据交互

Vue全家桶之前后端交互

ASP.NET使用AJAX完成前后端表单数据交互(包含Vue绑定下拉选项)