Node-Express MySQL API output JSON array as string
P粉575055974
P粉575055974 2024-03-30 12:49:49
0
1
313

Try setting up an Express API server to get some data for the portfolio website. I have set up a MySQL table with a JSON data type for my "Image" column. "images" should have multiple image links for the gallery. However, the server outputs the image array as a string instead of an array of strings.

Javascript code on the API server

app.get("/getWorks", (req, res) => {
  let sql = "select * from works";
  db.query(sql, (err, result) => {
    if (err) throw err;
    console.log(result);
    res.send(result);
  });
});

result

[
  {
    "workID": 1,
    "title": "example",
    "images": "[\"https://SERVER_IP/images/example.png\", \"https://SERVER_IP/images/example.png\"]"
  }
]

Solution

I found a workaround to get the desired output, adding the following:

result = result.map((row) => ((row.images = JSON.parse(row.images)), row));
[
  {
    "workID": 1,
    "title": "example",
    "images": ["https://SERVER_IP/images/example.png", "https://SERVER_IP/images/example.png"]
  }
]

Why doesn't the query output the data in the JSON array in the first place even though I specify that specific column as JSON data type in the table?

P粉575055974
P粉575055974

reply all(1)
P粉170858678

I solved this problem. I'm using the wrong MySQL node package. Requires MySQL2 for json formatting.

npm install mysql2
const mysql = require("mysql2");
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!