我需要将数据发送到后端,但是出现此错误:
未捕获(承诺)错误:请求失败,状态码为404
我该如何解决?
下图:
以下代码javascript:
handleClick(_success, _error) {
const usuarioLogin = this.props.cliente;
const usuarioCliente = parseInt(this.state.usuario);
const ObjetoChamado = {
titulo: this.state.titulo,
descricao: this.state.descricao,
area: parseInt(this.state.area),
categoria: parseInt(this.state.categoria),
servico: parseInt(this.state.servico),
usuario: usuarioLogin,
cliente: usuarioCliente,
};
this.props.abrirChamado(
ObjetoChamado,
(response) => {
this.props.getChamados(usuarioLogin, null, (chamados) => {
// Chamado aberto, atualizar lista e fechar o popup de abertura
this.props.setClientData(usuarioLogin, null, chamados.data.objeto);
this.props.visible(false);
});
},
(error) => {
alert(!!error ? error : 'Não foi possível abrir o chamado.');
}
);
axios.post(ObjetoChamado).then((response) => {
const data = response.data;
// if (Object.keys(data).length > 0) {
// if (typeof _success === 'function') _success(data);
// } else {
// if (typeof _error === 'function') {
// _error({
// code: 404,
// message: 'Não há nenhum registro para este cliente.',
// });
// }
// }
console.log('DATA:', data);
});
};
答案 0 :(得分:0)
状态代码404表示您在axios中提供的API路径无效。因此,您需要检查API路径。
axios.post(ObjetoChamado)-这是错误的。
您需要将两个参数传递给axios.post,第一个参数将是您要发送数据的API路径,第二个参数将是数据对象。 所以您的代码看起来像这样-
axios.post('/ your-api-path',objectoChamado).then(response => {
});