这是我的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教程,但我仍然遇到了同样的错误。也许是因为我的数据库修改不正确?
我的模型被命名为表格,它包含id,作者,标题,流派,价格id是自动增量,除了浮动类型的价格外,一切都是字符串。为什么即使我的语法与教程完全相同,我也会收到语法错误?
编辑:错误是 sqlMessage:&#39;您的SQL语法有错误;检查与您的MySQL服务器版本相对应的手册,以便在表格(作者,标题,流派,价格)附近使用正确的语法(值,\#39; Bill \&#39;,\&#39 ; Chris \&#39;,NULL,\&#39; Chrisdss \&#39;,NULL \&#39;在第1行&#39;, sqlState:&#39; 42000&#39;, 指数:0, sql:&#39; INSERT INTO表(作者,标题,流派,价格)价值观(\&#39; Bill \&#39;,\&#39; Chris \&#39;,NULL,\&#39; ; Chrisdss \&#39;,NULL,20),(\&#39; Bill \&#39;,\&#39; Chrisss \&#39;,NULL,\&#39; Chrdsdss \&#39 ;,NULL,24.1)&#39; }
答案 0 :(得分:1)
要使查询con.query('INSERT ... ?', [values], ...
起作用,值应包含长度为4的数组,其中包含作者,标题,流派,价格的值。
但是,值包含长度为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_field_i是要用空填充的字段。