You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Vladimir Kotikov (JIRA)" <ji...@apache.org> on 2015/04/27 10:55:39 UTC

[jira] [Closed] (CB-8792) Windows Phone 8 only: File Plugin: readAsText leads to object instead string

     [ https://issues.apache.org/jira/browse/CB-8792?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vladimir Kotikov closed CB-8792.
--------------------------------

> Windows Phone 8 only: File Plugin: readAsText leads to object instead string
> ----------------------------------------------------------------------------
>
>                 Key: CB-8792
>                 URL: https://issues.apache.org/jira/browse/CB-8792
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Plugin File, WP8
>    Affects Versions: 3.4.0
>         Environment: Windows 8.1, Visual Studio with Cordova, Emulators, native Devices
>            Reporter: Martin Luckow
>            Assignee: Vladimir Kotikov
>              Labels: cordova-plugin-file
>
> I have to read and write local JSON-Files in my Cordova-Project. I use the current and previous versions of File-Plugin.
> Writing works fine under all platforms.
> Reading under iOS and Android and Windows 8.1 works.
> Reading under Windows Phone 8 (device and emulator) has a strange effect: instead of getting a string I get the already decoded object stored in the JSON-File
> ...
> function GotFileEntry(fileEntry) {
>   fileEntry.file(GotFile, Fail);
>   function GotFile(file) {
>     var reader = new FileReader();
>     reader.onload = function (evt) {
>       // Here evt.target.result is the decoded object instead a string.
>     };
>     reader.onerror = function (evt) {
>        // No error occurs
>     };
>     reader.readAsText(file);
> }



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org