gpt4 book ai didi

mysql - Node.js mysql 多对多关系

转载 作者:行者123 更新时间:2023-11-29 15:15:13 24 4
gpt4 key购买 nike

我正在尝试使用node.js和mysql来创建产品和类别之间的多对多关系,而不使用Sequelize。或者我一定要使用它吗?

连接到数据库时创建的具有关系的表:

connection.connect((err) => {
if (err) {
return console.error("error: " + err.message);
} else {
console.log("Connected to the MySQL server.");
let createProducts = `CREATE TABLE IF NOT EXISTS products(
product_id INT UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT,
name VARCHAR (255) NOT NULL,
description VARCHAR (255),
price DECIMAL (19,2),
sku VARCHAR (255),
image VARCHAR (255),
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
updated_at TIMESTAMP NOT NULL DEFAULT NOW() ON UPDATE now())`;
let createCategories = `CREATE TABLE IF NOT EXISTS categories(
category_id INT UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT,
name VARCHAR (255) NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
updated_at TIMESTAMP NOT NULL DEFAULT NOW() ON UPDATE NOW())`;
let createProductsCategories = `CREATE TABLE IF NOT EXISTS products_categories(
id INT UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT,
product_id INT UNSIGNED NOT NULL,
category_id INT UNSIGNED NOT NULL,
FOREIGN KEY (product_id) REFERENCES products (product_id) ON DELETE CASCADE,
FOREIGN KEY (category_id) REFERENCES categories (category_id) ON DELETE CASCADE,
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
updated_at TIMESTAMP NOT NULL DEFAULT NOW() ON UPDATE NOW())`;
connection.query(createProducts, function (err, results, fields) {
if (err) {
console.log(err.message);
}
});
connection.query(createCategories, function (err, results, fields) {
if (err) {
console.log(err.message);
}
});
connection.query(createProductsCategories, function (err, results, fields) {
if (err) {
console.log(err.message);
}
});
}
});

我还应该在产品和类别模型/ Controller 中包含哪些内容,以使它们之间的关系发挥作用?在创建带有类别的产品时,数据会被插入到 products_categories 表中吗?

产品型号:

const Categories = require("category.model");

// constructor
const Product = function (product) {
this.name = product.name;
this.description = product.description;
this.price = product.price;
this.sku = product.sku;
this.image = product.image;
};

Product.create = (newProduct, result) => {
mysql.query("INSERT INTO products SET ?", newProduct, (err, res) => {
if (err) {
result(err, null);
return;
}
result(null, {id: res.insertId, ...newProduct});
});
};

产品 Controller :

const Product = require("../models/product.model.js");

exports.create = (req, res) => {
if (!req.body) {
res.status(400).send({
message: "Content can not be empty!"
});
}
const product = new Product({
name: req.body.name,
description: req.body.description,
price: req.body.price
});
Product.create(product, (err, data) => {
if (err)
res.status(500).send({
message:
err.message || "Error occurred while creating the new Product."
});
else res.send(data);
});
};

产品路线:

module.exports = app => {
const products = require("../controllers/product.controller.js");
app.post("/products", products.create);

类别模型:

const Category = function (category) {
this.name = category.name;
};

Category.create = (newCategory, result) => {
mysql.query(`INSERT INTO categories SET ?`, newCategory, (err, res) => {
if (err) {
result(err, null);
return;
}
result(null, {id: res.insertId, ...newCategory});
});
};

最佳答案

是否需要使用Sequelize?

简短回答:否。

长答案:Sequelize 是一个 ORM,可以帮助您简化不同的数据库操作并节省您的时间和精力。这就是为什么建议使用 ORM,这样您就可以更多地关注业务逻辑,而不用担心管理数据库操作。

而且 Sequelize 并不是实现这些目标的唯一 ORM。

Here ,您可以找到最流行的 ORM 列表。

产品和类别之间的关系如何运作?

您的架构看起来不错。现在,如果您正确执行插入操作,就可以完成工作。

插入时,请确保遵循以下步骤。

  1. 插入产品
  2. 插入类别
  3. 获取 product_idcategory_id 并将它们插入到 Product_categories 中。

关于mysql - Node.js mysql 多对多关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59734810/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com