Phonegap から XML ファイルを開いて読み取ろうとしていますが、この CORS エラーが発生しています。どうすればこれを解決できますか?
XMLHttpRequest cannot load file://localhost/../data/file.xml. Origin null is not allowed by Access-Control-Allow-Origin.
呼び出し元コードは次のとおりです。
var request = $.ajax({
type: "GET",
url: "data/file.xml",
async: false,
dataType: "xml"
});
こちらの説明により、コードにこのスニペットも含まれています。
$(document).on( "mobileinit", function() {
$.support.cors = true;
$.mobile.allowCrossDomainPages = true;
});