次のような中間ファイル呼び出しを作成することで、同じドメイン ポリシーをバイパスできることを知っています。
$.getJSON('service_facade.php', function(data) {
options.series = data;
// Create the chart
var chart = new Highcharts.Chart(options);
});
service_facade.php の内容は、php では次のようになります。
print_r($_GET["http://myservice.com/parameters"]);
問題は、アクセスしているチャートがレンダリングされていないことです。私はこれを間違っていますか?