Vue implements fuzzy query-Mysql database data

Vue implements fuzzy query-Mysql database data

1. Demand

Enter data in the input box, and fuzzily search the corresponding content in the database based on the input results to achieve fuzzy query.

2. Implementation

The input box uses v-model two-way binding to query data keyWord .

<el-input v-model="keyWord" placeholder="Please enter the keyword to search" clearable></el-input>
        <el-button type="success" icon="el-icon-search" @click="search"></el-button>


Since the input box and the display result are no longer in the same view , the search results are passed to the page that displays the results when the route jumps. query used here is

search function:

SearchResult.vue code

insert image description here

Get keyWord from the input box in the created function

getData(offset,limit) function uses axios to query data from the backend based on keyWord , where offset and limit are parameters for paging queries.

//Method to request database data getData(offset,limit){
      this.axios.post('/php/search.php', qs.stringify({
        offset: offset,
        limit: limit,
        keyWord: this.keyWord
      }), { headers: { 'Content-Type': 'application/x-www-form-urlencoded' } }).then((res) => {
        this.total = res.data.total
        this.resultList = res.data.data
      }).catch((err) => {
        this.$message.error(err)
      })

After successfully obtaining the data, the data will be stored in resultList array. You only need to loop through the array to display the query results to the front end.

The backend is written in php , and mainly uses like of sql statements to implement fuzzy queries.
In the backend search.php file, change the basic database connection information to your own.

<?php
$servername = "Host Address";
$username = "account";
$password = "password";
$dbname = "Database name";

// Create a connection $conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
} 

$keyWord = $_POST['keyWord'];
//Get the start and end number of the front-end parameters
if ( !isset( $_POST['offset'] ) ) {
 echo 0;
 exit();
};
$offset = ( int )$_POST['offset'];

if ( !isset( $_POST['limit'] ) ) {
 echo 0;
 exit();
};
$limit = ( int )$_POST['limit'];
//Pagination query database $sql = "SELECT * FROM posts where title like '%$keyWord%' order by id desc LIMIT $limit OFFSET $offset";
$result = $conn->query($sql);

$sqlGetCount = "SELECT COUNT(*) cnt FROM posts where title like '%$keyWord%'";
$rescnt = $conn->query($sqlGetCount);
$rescnt = $rescnt->fetch_assoc();
$arr = array();
if ($result->num_rows > 0) {
 while ( $row = $result->fetch_assoc() ) {
    array_push( $arr, $row );
}
 //echo json_encode( $arr, JSON_UNESCAPED_UNICODE );
 echo json_encode(array_merge(array('data'=>$arr),array('total'=>(int)$rescnt['cnt'])));
 
} else {
    echo 0;
}
mysqli_close( $conn );
?>

Note the sql statement:

SELECT * FROM posts where title like '%$keyWord%' order by id desc LIMIT $limit OFFSET $offset;

like should be followed by '%$keyWord%' to pass parameters instead of %' $keyWord'% . I guess I've fallen into a trap.
Then this is a fuzzy query title based on the input data, that is, the data segment title, which can be changed to query other content.

3. Results

This is the end of this article about implementing fuzzy query of MySQL database data based on Vue. For more relevant content about implementing fuzzy query of MySQL database data based on Vue, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • A simple example of how to implement fuzzy query in Vue
  • Vue implements the fuzzy query method of Input input box
  • Vue implements the sample code of fuzzy query of input box (application scenario of throttling function)
  • Vue2 filter fuzzy query method
  • Sample code for fuzzy query of Vue input box

<<:  Difference between varchar and char types in MySQL

>>:  Teach you how to install docker on windows 10 home edition

Recommend

How to implement simple data monitoring with JS

Table of contents Overview first step Step 2 Why ...

3 Tips You Must Know When Learning JavaScript

Table of contents 1. The magical extension operat...

Reasons for the sudden drop in MySQL performance

Sometimes you may encounter a situation where a S...

Even a novice can understand the difference between typeof and instanceof in js

Table of contents 1. typeof 2. instanceof 3. Diff...

Let you understand how HTML and resources are loaded

All content in this blog is licensed under Creati...

SQL implementation of LeetCode (177. Nth highest salary)

[LeetCode] 177.Nth Highest Salary Write a SQL que...

What to do if the container started by docker run hangs and loses data

Scenario Description In a certain system, the fun...

A brief discussion on the problem of Docker run container being in created state

In a recent problem, there is such a phenomenon: ...

MySQL batch removes spaces in a certain field

Is there any way to remove spaces from a certain ...

A MySQL migration plan and practical record of pitfalls

Table of contents background Solution 1: Back up ...

Windows Server 2008 R2 Multi-User Remote Desktop Connection Licensing

At work, we often need remote servers and often e...

CSS warped shadow implementation code

This article introduces the implementation code o...