gpt4 book ai didi

javascript - axios put 请求,发送参数和数据

转载 作者:行者123 更新时间:2023-12-04 10:48:07 25 4
gpt4 key购买 nike

我有一个简单的待办事项应用程序,正在研究编辑任务功能。我的后端在测试时似乎工作正常。我正在寻找 req.body.description。我正在按 id 编辑任务。当我保存编辑时,我的数据库中没有任何 react 。我的功能如下,为什么不行呢?

function editTask(task) {
const id = task.parent().parent().attr('id');
const descript = task.parent().prev().text();
axios.put('http://localhost:5000/api/tasks/:id', {
params: {
id: id
},
description: descript
}).then(res => {
console.log(res);
}).catch(err => console.error(err));
}

最佳答案

function editTask(task) {
const id = task.parent().parent().attr('id');
const descript = task.parent().prev().text();

axios.put("http://localhost:5000/api/tasks/"+id, {
description: descript
}).then(res => {
console.log(res);
}).catch(err => console.error(err));
}

关于javascript - axios put 请求,发送参数和数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59606168/

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