В Cordova 9 при запуске cordova run android
я получаю ERR_CONNECTION_REFUSED на localhost: 9000 в веб-просмотре. Мой веб-сервер запущен и работает на localhost: 9000
Есть идеи, почему эмулятор не может подключиться к localhost: 9000?
Мое приложение выглядит как:
index. html
<html>
<head>
<title>MyApp</title>
</head>
<body>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>
index. js
var app = {
initialize: function() {
document.addEventListener('deviceready', function(){
window.location.replace("http://127.0.0.1:9000");
}, false);
}
};
app.initialize();
config. xml
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.myapp" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>MyApp</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-navigation href="http://localhost:9000" />
<platform name="android">
<allow-intent href="market:*" />
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
<application android:usesCleartextTraffic="true" />
</edit-config>
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>'''