【发布时间】:2020-06-30 00:16:18
【问题描述】:
当我使用 Axios 在 React Native 中发出 post 请求时,它会返回 [Unhandled Promise Rejection: TypeError: Network request failed]。 这是我的 json 和我的 axios 方法
const credentials= {
NickName: "ricardo.luna",
Password: "123",
AccesoAplicacion: 1,
DerechosRangoInicial: 1000,
DerechosRangoFinal: 1012
}
const loginAxios = () => {
axios
.post('x.x.x.x/API/users', credentials)
.then(response => {
console.log(response.IdUser);
});
};
【问题讨论】:
标签: javascript react-native post axios http-post