为什么它在mysql中抛出语法错误

wko9yo5t  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(315)

这是我的html文件

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Node delivered HTML </title>

</head>
<body>
   <div>
    <h1>Send JSON to Node</h1>
        <button onClick="sendJSON()">Send</button>
        <p id ="result"></p>

   </div>
<script>
 var myData = [
    {
        "author": "Bill",
        "title": "Chris",
        "genre": "Chrisdss",
        "price": 20
    },
    {
        "author": "Bill",
        "title": "Chrisss",
        "genre": "Chrdsdss",
        "price": 24
    }
    ]

function sendJSON(){

console.log(myData);
var xmlhttp = new XMLHttpRequest();   // new HttpRequest instance
xmlhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
       document.getElementById("result").innerHTML =
       this.responseText;
    }
 };
xmlhttp.open("POST", "http://localhost:3000");
xmlhttp.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
xmlhttp.send(JSON.stringify(myData));

}

</script>
</body>
</html>

这是我的server.js文件

const express = require('express')
const bodyParser = require('body-parser')
const mysql = require('mysql');
const path = require('path')
const app = express()

var TABLE = 'table';
var books =[]
// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }))

// parse application/json
app.use(bodyParser.json())

var con = mysql.createConnection({
  host: "localhost",
  user: "root",
  password: "0december"
});

con.connect(function(err) {
  if (err) throw err;
  console.log("Connected!");

});

app.get('/', function(req, res) {
  res.sendFile(path.join(__dirname+ '/frontend.html'));
});

app.post('/', function(req, res) {

var jsondata = req.body;
var values = [];
console.log(req.body);
for(var i=0; i< jsondata.length; i++){
  values.push([jsondata[i].author,jsondata[i].title,,jsondata[i].genre,,jsondata[i].price]);
}

//Bulk insert using nested array [ [a,b],[c,d] ] will be flattened to (a,b),(c,d)
con.query('INSERT INTO table (author,title,genre,price) VALUES ?', [values], function(err,result) {
  if(err) {
     res.send('Error');
     console.log(err);
  }
 else {
     res.send('Success');
  }
});
});

app.listen(3000, () => console.log('Books API listening on port 3000'))

我的服务器运行得很好,但我尝试了很多方法,却出现了一个sql语法错误。我也试过w3c教程,但还是遇到了同样的错误。可能是因为我的数据库修改不正确?
我的模型名为table,它包含id,author,title,genre,price id是自动递增的,除了price是float类型外,其他都是字符串。为什么即使我的语法与教程完全相同,也会出现语法错误?
edit:error is sqlmessage:'您的sql语法有错误;请查看与您的mysql服务器版本对应的手册,以了解使用“表(作者、标题、流派、价格)”值('bill'、'chris'、null、'chrisdss'、null'at line 1',sqlstate:'42000',index:0,sql:'insert into table(作者、标题、流派、价格)值('bill'、'chris'、null、'chrisdss'、null、20),('bill','chrisss',null,'chrdsdss',null,24.1)}

ego6inou

ego6inou1#

可能的解决方案

用于查询 con.query('INSERT ... ?', [values], ... 要工作,值应该包含长度为4的数组,其中包含author、title、genre和price的值。
但是,值包含长度为6的数组。
您应该通过替换

values.push([jsondata[i].author,jsondata[i].title,,jsondata[i].genre,,jsondata[i].price]);

具有

values.push([jsondata[i].author,jsondata[i].title,jsondata[i].genre,jsondata[i].price]);

现在值包含长度为4的数组,大容量插入应该可以工作。

交替解决方案

如果要使用空值,则应指定插入它们的位置。
改变

'INSERT INTO table (author,title,genre,price) VALUES ?'

'INSERT INTO table (author,title,null_field_1,genre,null_field_2,price) VALUES ?'

其中null\u field\u i是要用null填充的字段。

相关问题