search
HomeBackend DevelopmentPHP TutorialHow to use PHP and Vue to implement data synchronization function

How to use PHP and Vue to implement data synchronization function

How to use PHP and Vue to implement data synchronization function

Foreword:
In modern web application development, data synchronization is a very important function. Data synchronization means that when the data on the back-end server changes, the front-end page can obtain the latest data in a timely manner and update the page accordingly. This article will introduce how to use PHP and Vue to implement data synchronization function, and provide specific code examples.

1. Acquisition and update of back-end data
In the back-end, we can use PHP to operate the database and obtain and update data. Suppose we have a student performance management system that contains students' names and performance information. Below is a simple PHP file used to obtain student performance data.

<?php
// 获取数据库连接
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "database";

$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) {
    die("连接失败: " . $conn->connect_error);
}

// 查询学生成绩数据
$sql = "SELECT * FROM students";
$result = $conn->query($sql);

// 将查询结果转换为关联数组
$data = array();
if ($result->num_rows > 0) {
    while ($row = $result->fetch_assoc()) {
        $data[] = $row;
    }
}

// 将数据转换为JSON格式并输出
echo json_encode($data);

$conn->close();
?>

In the above code, we first established a connection with the database and queried the student's performance data. Then, the query results are converted into an associative array, and the data is converted into JSON format for output. In this way, the front-end page can obtain the latest student performance data by sending an Ajax request.

2. Implementation of the front-end page
In the front-end, we can use Vue.js to bind and update data. Suppose we have a student performance management system page that uses Vue.js as the front-end framework. Below is a simple Vue component used to display student performance data.

<template>
  <div>
    <table>
      <tr>
        <th>姓名</th>
        <th>成绩</th>
      </tr>
      <tr v-for="student in students" :key="student.id">
        <td>{{ student.name }}</td>
        <td>{{ student.grade }}</td>
      </tr>
    </table>
  </div>
</template>

<script>
export default {
  data() {
    return {
      students: []
    };
  },
  mounted() {
    this.fetchStudents();
  },
  methods: {
    fetchStudents() {
      // 发送Ajax请求获取学生成绩数据
      // 这里假设后端数据接口为 /api/getStudents.php
      fetch('/api/getStudents.php')
        .then(response => response.json())
        .then(data => {
          this.students = data;
        });
    }
  }
};
</script>

In the above code, we define a Vue component to display student performance data. A students array is defined in the data of the component to store the obtained student performance data. The fetchStudents method is called in the mounted hook of the component, which sends an Ajax request to obtain the latest student performance data. Then, assign the obtained data to the students array to update the data on the page.

3. Implement the data synchronization function
The key to realizing the data synchronization function is to promptly notify the front-end page to update when the back-end data changes. This can be achieved through WebSocket technology. This article does not introduce the principles of WebSocket in detail, but only provides a simple sample code.

The following is a simple PHP file used to broadcast to the front-end page through WebSocket after receiving new student performance data.

<?php
// 获取WebSocket连接
$server = new SwooleWebSocketServer('0.0.0.0', 9501);

// 监听WebSocket连接事件
$server->on('open', function ($server, $request) {
    echo "新的连接建立:" . $request->fd . "
";
});

// 监听WebSocket消息事件
$server->on('message', function ($server, $frame) {
    echo "收到消息:" . $frame->data . "
";
});

// 监听WebSocket关闭事件
$server->on('close', function ($server, $fd) {
    echo "连接关闭:" . $fd . "
";
});

// 启动WebSocket服务
$server->start();
?>

In the above code, we first created a WebSocket server and listened to the open, message and close events. When a new connection is established, the connection ID will be output; when a message is received, the content of the message will be output; when the connection is closed, the closed connection ID will be output.

In the front-end page, we can use WebSocket technology to communicate with the back-end and update the data on the page when new student performance data is received. The following is a simple Vue component example that shows how to use WebSocket to implement data synchronization function.

<template>
  <div>
    <table>
      <tr>
        <th>姓名</th>
        <th>成绩</th>
      </tr>
      <tr v-for="student in students" :key="student.id">
        <td>{{ student.name }}</td>
        <td>{{ student.grade }}</td>
      </tr>
    </table>
  </div>
</template>

<script>
export default {
  data() {
    return {
      students: []
    };
  },
  mounted() {
    this.fetchStudents();

    // 建立WebSocket连接
    this.socket = new WebSocket('ws://localhost:9501');

    // 监听WebSocket消息事件
    this.socket.onmessage = (event) => {
      const data = JSON.parse(event.data);
      if (data.action === 'addStudent' || data.action === 'updateStudent') {
        // 新增或更新学生数据
        this.students.push(data.student);
      } else if (data.action === 'deleteStudent') {
        // 删除学生数据
        this.students = this.students.filter(student => student.id !== data.student.id);
      }
    };
  },
  methods: {
    fetchStudents() {
      // 发送Ajax请求获取学生成绩数据
      // 这里假设后端数据接口为 /api/getStudents.php
      fetch('/api/getStudents.php')
        .then(response => response.json())
        .then(data => {
          this.students = data;
        });
    }
  },
  beforeDestroy() {
    // 关闭WebSocket连接
    this.socket.close();
  }
};
</script>

In the above code, we established the WebSocket connection in the mounted hook and processed the message sent by the backend in the onmessage event. When new student performance data is received, it is determined whether to add, update or delete student data by judging the action attribute in the message. According to different operations, update the students array on the page to synchronize the data.

Summary:
Using PHP and Vue to implement the data synchronization function requires the coordination of back-end data acquisition and update, front-end page data binding and update, and data synchronization function. Obtain the latest data by sending Ajax requests, and use WebSocket to monitor changes in back-end data and update the data on the front-end page in a timely manner. This article provides specific code examples to help readers better understand and implement the data synchronization function. I hope this article will be helpful to everyone in practice.

The above is the detailed content of How to use PHP and Vue to implement data synchronization function. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Vue常见面试题汇总(附答案解析)Vue常见面试题汇总(附答案解析)Apr 08, 2021 pm 07:54 PM

本篇文章给大家分享一些Vue面试题(附答案解析)。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

5 款适合国内使用的 Vue 移动端 UI 组件库5 款适合国内使用的 Vue 移动端 UI 组件库May 05, 2022 pm 09:11 PM

本篇文章给大家分享5 款适合国内使用的 Vue 移动端 UI 组件库,希望对大家有所帮助!

vue中props可以传递函数吗vue中props可以传递函数吗Jun 16, 2022 am 10:39 AM

vue中props可以传递函数;vue中可以将字符串、数组、数字和对象作为props传递,props主要用于组件的传值,目的为了接收外面传过来的数据,语法为“export default {methods: {myFunction() {// ...}}};”。

手把手带你利用vue3.x绘制流程图手把手带你利用vue3.x绘制流程图Jun 08, 2022 am 11:57 AM

利用vue3.x怎么绘制流程图?下面本篇文章给大家分享基于 vue3.x 的流程图绘制方法,希望对大家有所帮助!

聊聊vue指令中的修饰符,常用事件修饰符总结聊聊vue指令中的修饰符,常用事件修饰符总结May 09, 2022 am 11:07 AM

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?React和Vue项目的解决方法浅析如何覆盖组件库样式?React和Vue项目的解决方法浅析May 16, 2022 am 11:15 AM

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

通过9个Vue3 组件库,看看聊前端的流行趋势!通过9个Vue3 组件库,看看聊前端的流行趋势!May 07, 2022 am 11:31 AM

本篇文章给大家分享9个开源的 Vue3 组件库,通过它们聊聊发现的前端的流行趋势,希望对大家有所帮助!

react与vue的虚拟dom有什么区别react与vue的虚拟dom有什么区别Apr 22, 2022 am 11:11 AM

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)