本地主机解析与android模拟器集成[重复]

Posted

技术标签:

【中文标题】本地主机解析与android模拟器集成[重复]【英文标题】:Localhost parse integration with android simulator [duplicate] 【发布时间】:2016-07-05 10:12:30 【问题描述】:

我正在尝试在我的本地主机上设置解析服务器并尝试连接到我的应用模拟器。

这是我的解析代码

// Example express application adding the parse-server module to expose Parse
// compatible API routes.

var express = require('express');
var ParseServer = require('parse-server').ParseServer;

var databaseUri = process.env.DATABASE_URI;

var api = new ParseServer(
  databaseURI: databaseUri || 'mongodb://abc:27017/parse',
  cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
  appId: process.env.APP_ID || 'chat-test',
  masterKey: process.env.MASTER_KEY || 'chat-test', //Add your master key here. Keep it secret!
  serverURL: process.env.SERVER_URL || 'http://localhost:1337',  // Don't forget to change to https if needed
  facebookAppIds: 'abc' //FaceBook App ID Keys. Comma Separated.
);
// Client-keys like the javascript key or the .NET key are not necessary with parse-server
// If you wish you require them, you can set them as options in the initialization above:
// javascriptKey, restAPIKey, dotNetKey, clientKey

var app = express();

// Serve the Parse API on the /parse URL prefix
var mountPath = process.env.PARSE_MOUNT || '/parse';
app.use(mountPath, api);

// Parse Server plays nicely with the rest of your web routes
app.get('/', function(req, res) 
  res.status(200).send('I dream of being a web site.');
);

var port = process.env.PORT || 1337;
app.listen(port, function() 
    console.log('parse-server-example running on port ' + port + '.');
);

我正在使用

Parse.initialize(new Parse.Configuration.Builder(getBaseContext()).applicationId("chat-test").server("http:/localhost:1337/parse/").build());

我从实时服务器得到这一切,只是替换到本地主机,但我不能让安卓连接到本地主机。它给了我 i/o 失败。

如何让我的 android 模拟器与这个 localhost 解析一起工作

【问题讨论】:

是什么让你 i/o 失败?您的确切错误或 logcat 是什么? 【参考方案1】:

Android 模拟器实际上是一个虚拟机,这意味着 localhost 是模拟器的内部 IP。您可以通过 ip 10.0.2.2 访问您的计算机。

这意味着您应该将 URL 更改为 http://10.0.2.2:1337/parse/

完整的代码行应该是:

Parse.initialize(new Parse.Configuration.Builder(getBaseContext()).applicationId("chat-test").server("http://10.0.2.2:1337/parse/").build());

这是记录在here

【讨论】:

【参考方案2】:

为什么你的代码中有 localhost?本地主机表示请求在本地设备上运行,您可以在服务器内部使用它,但不能在客户端设备上使用。尝试放一些服务器/您的计算机的IP地址,它也被回答here

.server("http://localhost:1337/parse/")

【讨论】:

以上是关于本地主机解析与android模拟器集成[重复]的主要内容,如果未能解决你的问题,请参考以下文章

当 IP 在 10.x.x.x 范围内时,通过本地 IP 连接到 android 模拟器

如何从 android http get 访问本地端口 8080 url

NFC开发(一)——HCE基于主机的卡模拟简述

Android 模拟器看起来像素化

Android设备无法连接到本地主机中的mysql [关闭]

运行放大模拟时无法访问 DynamoDB 主机