gpt4 book ai didi

laravel - 我在使用 "AXIOS PATCH"方法时遇到问题

转载 作者:行者123 更新时间:2023-12-03 06:41:35 26 4
gpt4 key购买 nike

我正在尝试使用“axios 补丁”方法更新我的数据库记录。

这是我的代码:

editClient(client) {
let data = new FormData();
data.append("name", this.client.name);
data.append("email", this.client.email);
data.append("phone", this.client.phone);
data.append("_method", "PATCH");
axios
.post(`/api/clients/${client.id}`, data)
.then(res => {
resolve(res.data.client);
})
.catch(err => console.log(err.response.data));
},

我试过这段代码:

axios
.patch(`/api/clients/${client.id}`, {
name: this.client.name,
phone: this.client.phone,
email: this.client.email
})
.then(res => {
resolve(res.data.client);
})
.catch(err => console.log(err.response.data));

但它也不起作用。

我得到的错误是

POST http://localhost:8000/api/clients/27 500 (Internal Server Error)

{message: "SQLSTATE[42S22]: Column not found: 1054 Unknown co…4 02:12:57"` = updated_at:"2019-05-24 02:12:57"})", exception: "Illuminate\Database\QueryException", file: "C:\xampp\htdocs\prs3\vendor\laravel\framework\src\Illuminate\Database\Connection.php", line: 664, trace: Array(60)}
exception: "Illuminate\Database\QueryException"
file: "C:\xampp\htdocs\prs3\vendor\laravel\framework\src\Illuminate\Database\Connection.php"
line: 664
message: "SQLSTATE[42S22]: Column not found: 1054 Unknown column 'name:"2011"' in 'where clause'

当我尝试这段代码时:

axios
.patch(`/api/clients/${client.id}`, {
data: this.client
})
.then(res => {
resolve(res.data.client);
})
.catch(err => console.log(err.response.data));

我得到的错误是

app.js:285 PATCH http://localhost:8000/api/clients/27 422 (Unprocessable Entity)

{message: "The given data was invalid.", errors: {…}}
errors:
email: ["The email field is required."]
name: ["The name field is required."]
phone: ["The phone field is required."]
__proto__: Object
message: "The given data was invalid."

我是 axios 和 vue 的新手。我正在尝试学习如何使用 axios 构建和 CRUD api。

我试图找到其他方法,但找不到。

这是我的 Controller :

public function update(Client $client) {
$val = $client ? ','.$client : '';
$client->update($this->_val($val));
return back();
}

public function _val($val) {
return request()->validate([
'name' => ['required', 'min:2', 'unique:clients,name'.$val],
'email' => ['required', 'email', 'unique:clients,email'.$val],
'phone' => ['required', 'alpha_num'],
]);
}

最佳答案

您的 axios 邮政编码没问题。它工作正常。您在 post 字段中得到的错误是 larvel error column not found

我猜你在保存数据时在某些列名中输入了错误,或者你错误地输入了不在表格中的未知列。

请提供 laravel 端代码,以便我们可以看到您在哪里遇到错误。顺便从你的问题=>你的axios.post代码是正确的

关于laravel - 我在使用 "AXIOS PATCH"方法时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56286074/

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