When you couldn’t debug this and the amount of data is not incredible much, then this solution may help.
My Solution:
Check your Code and remove double functions in namespace, e.g. filter in the app level and on controller level with the same name
When you couldn’t debug this and the amount of data is not incredible much, then this solution may help.
My Solution:
Check your Code and remove double functions in namespace, e.g. filter in the app level and on controller level with the same name
You need to add a plugin and a configuration to work this arround:
https://github.com/apache/cordova-plugin-whitelist
cordova plugin add cordova-plugin-whitelist
Add this to your config.xml in the root of the ionic project:
1 2 3 | <access origin="*"/> <allow-intent href="*" /> <allow-navigation href="*" /> |
My Problem was:
I was not able to communicate with my NodeJS (Express) Backend within a normal AngularJS HTTP connection.
Also in the app included youtube videos could not be played.
If you get this error, you are trying to requesting an url without adding a protocol to the address:
e.g.
127.0.0.1 instead of http://127.0.0.1