我正在尝试连接到localhost:3000/fullAndroid 上的 Retrofit。
public class RestManager {
private QaraSozService qaraSozService;
public QaraSozService getQaraSozService() {
if (qaraSozService == null) {
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("http://localhost:3000")
.addConverterFactory(GsonConverterFactory.create())
.build();
qaraSozService = retrofit.create(QaraSozService.class);
}
return qaraSozService;
}
}
public interface QaraSozService {
@GET("/full")
Call<List<QaraSoz>> getAllQaraSoz();
}
但是当我尝试连接时出现 onFailure,我收到错误消息 Failed to connect to localhost/127.0.0.1:3000
为什么android尝试连接localhost/127.0.0.1:3000
而不是localhost:3000?
慕田峪4524236
神不在的星期二
相关分类