React Native Fetch / Axios API调用总是会被捕获

时间:2019-06-11 08:42:16

标签: api react-native axios fetch

我尝试同时使用访存和axios。但是,这两个调用在我的本机应用程序中均失败。它总是进入catch函数。尽管从浏览器或Postman调用此api效果很好。

axios.get('http://sahajdevapi.letsendorse.com')
.then(function (response) {
  console.warn("res 1: ", response);
}).catch(function (error) {
  console.warn("err 1: ", error);
});

从catch函数得到的错误如下:

'err:', { [TypeError: Network request failed]
line: 24115,
column: 31,
sourceURL: 'http://localhost:8081/index.delta?platform=android&dev=true&minify=false'}

2 个答案:

答案 0 :(得分:0)

对于较新的版本,您需要为http访问添加一些安全性。

AndroidManifest.xml


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="com.example">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />

    <application
        android:name=".MainApplication"
        android:allowBackup="false"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@drawable/ic_launcher_round"
        android:theme="@style/AppTheme"
        android:usesCleartextTraffic="true"
        tools:ignore="GoogleAppIndexingWarning">

        <uses-library
            android:name="org.apache.http.legacy"
            android:required="false" />

        <activity
            android:name=".MainActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
            android:label="@string/app_name"
            android:windowSoftInputMode="adjustResize">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
        </activity>
        <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
    </application>

</manifest>

检查文件,您需要为此添加清单标签toolsuses-library

尝试这一方法即可。

答案 1 :(得分:0)

由于android VM是一个模拟器,如果我们使用localhost,则它指向android模拟器系统的本地主机,而不是开发系统的localhost。因此,请使用系统IP 地址而不是 localhost