Я создаю очень легкое приложение api и native-native. Сервер работает хорошо (тестируется с помощью PostMan), но приложение не вызывает сервер. Он блокирует, когда axios должен отправить запрос на отправку (см. Ниже).
Я в отчаянии:-( Потерять слишком много времени в нем. Пожалуйста, если вы можете мне помочь...
Вот мой код LogIn. Он отправляет создателя действия (работает с redux) с указанием электронной почты и пароля:
...
const LogIn = React.createClass({
submitLogin() {
// log in the server
if (this.props.email !== '' && this.props.psw !== '') {
if (this.props.valid === true) {
this.props.dispatch(logIn(this.props.email, this.props.psw));
} else {
this.props.dispatch(errorTyping());
}
}
},
...
электронная почта и пароль извлекаются и отправляются создателю действия:
import axios from 'axios';
import { SIGNIN_URL, SIGNUP_URL } from '../api';
// import { addAlert } from './alerts';
exports.logIn = (email, password) => {
return function (dispatch) {
console.log(email);
console.log(password);
console.log(SIGNIN_URL);
return axios.post(SIGNIN_URL, { email, password })
.then(
(response) => {
console.log(response);
const { token, userId } = response.data;
dispatch(authUser(userId));
}
)
.catch(
(error) => {
console.log('Could not log in');
}
);
};
};
const authUser = (userId) => {
return {
type: 'AUTH_USER',
userId
};
};
...
Три консоли console.log() перед аксиомами показывают данные правильно. SIGNIN_URL точно так же я использую в почтальоне.... но аксиомы не звонят.
Просто, чтобы дать все карты, это мой магазин:
import thunk from 'redux-thunk';
import { createStore, compose, applyMiddleware } from 'redux';
import { AsyncStorage } from 'react-native';
import { persistStore, autoRehydrate } from 'redux-persist';
import reducer from '../reducer';
const defaultState = {};
exports.configureStore = (initialState = defaultState) => {
const store = createStore(reducer, initialState, compose(
applyMiddleware(thunk),
autoRehydrate()
));
persistStore(store, { storage: AsyncStorage });
return store;
};
В отладчике нет сообщения об ошибке (но тот, который указан при вызове axios ( "Не удалось войти в систему" )
Я на окнах 10, с:
"axios": "^0.15.3",
"react": "15.4.2",
"react-native": "0.38.0",
"redux": "^3.6.0"
Вызов завершается неудачно даже при подготовке простого вызова GET, и сервер должен вернуть простое сообщение (проверено с почтовым ящиком и браузером):
exports.test = () => {
return function () {
return axios.get('https://localhost:3000/v1/test')
.then(
(response) => {
console.log(response);
}
)
.catch(
(error) => {
console.log('error');
}
);
};
};
Наконец, я также попытался изменить вызов, добавив заголовок как следующий, потому что api закодирован для принятия json:
const head = {
headers: { 'Content-Type': 'application/json' }
};
exports.test = () => {
return function () {
return axios.get('https://api.github.com/users/massimopibiri', head)
.then(
(response) => {
console.log(response);
}
)
.catch(
(error) => {
console.log('error');
}
);
};
};
но даже это не сработало. надеюсь кто-то может мне помочь. Других подобных проблем не было.