gpt4 book ai didi

javascript - 使更新 API 动态化

转载 作者:行者123 更新时间:2023-12-03 22:24:29 28 4
gpt4 key购买 nike

小问题,我怎样才能让这个 API 只从我的请求中获取定义的 json 键,而不用像下面这样的 if statement 检查我请求中的每个键:

const updateArticle = async (req, res) => {
const { title, description, body } = req.body;
try {
const article = await Article.findByPk(req.params.id);

if (title) article.title = title;
if (description) article.description = description;
if (body) article.body = body;

await article.save();

res.json("Article updated.");
} catch (err) {
console.log(err);
}
};

最佳答案

您可以使用 Object.assign() 方法将源对象的属性覆盖到目标对象。

const updateArticle = async (req, res) => {
const { title, description, body } = req.body;
try {
const article = await Article.findByPk(req.params.id);

Object.assign(article, req.body);

await article.save();

res.json("Article updated.");
} catch (err) {
console.log(err);
}
};

关于javascript - 使更新 API 动态化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66676577/

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