Phonegap - How to access file in www-folder?

前端 未结 5 835
终归单人心
终归单人心 2021-01-06 12:11

I saw multiple solutions how to access a file in the www folder but no solution works for me. I test the application under iOS with the iOS-simulator.
I want to access

5条回答
  •  被撕碎了的回忆
    2021-01-06 12:39

    I load my language files with ajax like this...

    $.get( "test.txt", function( data ) {
      console.log( "Load was performed.", data );
    });
    

    I think for your solution you have to add read access to your app --> config.xml

提交回复
热议问题