node.js – Axios(在React-native中)不在localhost中调用服务器

我正在构建一个非常简单的api和react-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
 };
};
...

axios之前的三个console.log()以正确的方式显示数据. SIGNIN_URL和我在邮递员中使用的完全相同. ……但是axios没有打电话.

只是给所有的卡,这是我的商店:

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调用给出的消息(‘无法登录’)

我在Windows 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');
      }
    );
  };
};

但即使这样也行不通.希望有人能帮助我.其他类似的问题没有.

解决方法

解决方案来自不同的来源,但我在此发布,以帮助其他人寻找相同的问题.基本上我使用Android AVD(模拟器)来构建应用程序.但是模拟器实际上是另一台机器,这就是它无法调用localhost的原因.

解决这个问题,我不得不以下列方式发送请求:

https://10.0.2.2:3000/v1/test

代替:

https://localhost:3000/v1/test

相关文章

这篇文章主要介绍“基于nodejs的ssh2怎么实现自动化部署”的...
本文小编为大家详细介绍“nodejs怎么实现目录不存在自动创建...
这篇“如何把nodejs数据传到前端”文章的知识点大部分人都不...
本文小编为大家详细介绍“nodejs如何实现定时删除文件”,内...
这篇文章主要讲解了“nodejs安装模块卡住不动怎么解决”,文...
今天小编给大家分享一下如何检测nodejs有没有安装成功的相关...