Después de agregar la lista blanca cordova-plugin , debe indicarle a su aplicación que permita el acceso a todos los enlaces de la página web o enlaces específicos, si desea mantenerlo específico.
Simplemente puede agregar esto a su config.xml , que se puede encontrar en el directorio raíz de su aplicación:
Recomendado en la documentación:
<allow-navigation href="http://example.com/*" />
o:
<allow-navigation href="http://*/*" />
De la documentación del complemento:
Lista blanca de navegación
Controla a qué URL se puede navegar el WebView. Se aplica solo a navegaciones de nivel superior.
Quirks: en Android también se aplica a iframes para esquemas no http (s).
De forma predeterminada, se permiten las navegaciones solo a file: // URL. Para permitir otras URL, debe agregar etiquetas a su config.xml:
<!-- Allow links to example.com -->
<allow-navigation href="http://example.com/*" />
<!-- Wildcards are allowed for the protocol, as a prefix
to the host, or as a suffix to the path -->
<allow-navigation href="*://*.example.com/*" />
<!-- A wildcard can be used to whitelist the entire network,
over HTTP and HTTPS.
*NOT RECOMMENDED* -->
<allow-navigation href="*" />
<!-- The above is equivalent to these three declarations -->
<allow-navigation href="http://*/*" />
<allow-navigation href="https://*/*" />
<allow-navigation href="data:*" />
cordova-plugin-whitelist
- github.com/apache/cordova-plugin-whitelist ? Después de eso, tendrá que agregar<allow-navigation href="http://*/*" />
a su config.xml