gpt4 book ai didi

javascript - 如何在 MySQL 中插入多条记录/行

转载 作者:行者123 更新时间:2023-11-29 05:12:49 25 4
gpt4 key购买 nike

是否可以在 Sails.js 中插入多条记录?我正在使用 MySQL,我需要根据来自 API 的请求将“n”行保存到 MySQL 中。

我需要有关 Sails.js 的帮助谢谢

最佳答案

是的,您可以一次在 mysql 中写入多条记录。让我的模型是:

module.exports = {
tableName:'test',
autoCreatedAt:false,
autoUpdatedAt:false,
attributes: {
name:'string'
}
};

先看看在mysql查询中是怎么做到的。

INSERT INTO `test` VALUES (1,'AB'),(2,'ABCCDC');

现在这是您可以添加多条记录的方式...

Test.create([{name:'name1'},{name:'name2'},{name:'name3'}])
.exec(function(err,done){
if(err){
//hendle the error;
return;
}
//successfully inserted;
});

现在我想我的观点很明确了。

you just have to pass the array of objects in model.create() to insert multiple objects.

关于javascript - 如何在 MySQL 中插入多条记录/行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37077411/

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