vue中怎么将json数据存入mysql
时间: 2024-05-04 14:19:01 浏览: 153
项目需求需要行业类别根据网上58行业类别json生成所需sql文件,下载文件包含mysql表创建跟相关数据直接导入即可
在 Vue 中将 JSON 数据存入 MySQL 需要通过后端代码来实现。通可以使用 Node.js 编写后端代码,并使用 或 Koa 框架来处理 HTTP 请求和响应。下面是一个简单的示例代码:
1. 首先,装 MySQL 模块和 Express 模块:
```
npm install mysql express --save
```
2. 在后端代码中引入这两个模块:
```
const express = require('express');
const mysql = require('mysql');
const app = express();
```
3. 创建一个 MySQL 数据库连接:
```
const connection = mysql.createConnection({
host: 'localhost',
user: 'root',
password: 'password',
database: 'mydatabase'
});
connection.connect();
```
4. 创建一个路由,用于将 JSON 数据存入 MySQL:
```
app.post('/savejson', (req, res) => {
const json = req.body; // 获取 JSON 数据
const sql = 'INSERT INTO table_name SET ?'; // SQL 语句
connection.query(sql, json, (err, result) => {
if (err) throw err;
res.send('JSON data saved to MySQL');
});
});
```
5. 在 Vue 中发送 HTTP 请求,将 JSON 数据传递给后端:
```
axios.post('/savejson', jsonData)
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
```
其中,`jsonData` 是一个 JSON 对象,包含要存入 MySQL 的数据。由于这个请求是 POST 请求,因此需要在后端代码中使用 `body-parser` 模块来解析请求体:
```
const bodyParser = require('body-parser');
app.use(bodyParser.json());
```
以上是一个简单的示例代码,具体的实现方式可能会因为你的具体需求而有所不同。
阅读全文