Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Incomplete
-
5.4.0
-
None
-
Windows, Cordova Whitelist, Cordova File, Cordova File Transfer
-
Important
Description
Trying to load an image from the local filesystem using fileEntry.toURL() does not work (I have tried toInternalURL() and toNativeURL() as well). In Chrome, it says:
Not allowed to load local resource: file:///persistent/spotlight5/image_8a8a8a4c45698eba01456b127db5015b
When trying to use the cdvfile:// address instead results in this error:
cdvfile://localhost/persistent/spotlight5/image_8a8a8a4c45698eba01456b127db5015b:1 GET cdvfile://localhost/persistent/spotlight5/image_8a8a8a4c45698eba01456b127db5015b net::ERR_UNKNOWN_URL_SCHEME
I have tried countless configurations of whitelist and/or the content security policy. My current configurations (but this is NOT limited to what I have actually tried) are:
<allow-navigation href="http:///"/>
<allow-navigation href="file:///*" />
<allow-navigation href="cdvfile://*" />
<allow-intent href="http:///" />
<allow-intent href="https:///" />
<allow-intent href="file:///*" />
<allow-intent href="cdvfile://*" />
<access origin="http:///" />
<access origin="https:///" />
<access origin="cdvfile://*" />
<access origin="file:///*" />
And
<meta http-equiv="Content-Security-Policy"
content="default-src * 'unsafe-inline' 'unsafe-eval'">
I really need help with this one, as this is blocking me finishing my project. This application has to run standalone, and we have to download images dynamically, put them on the local file system of the device, and then show them in image tags when disconnected from the network.
Thank you.
Katie