在cocoonjs中使用$ .getJSON()

时间:2015-05-25 16:52:41

标签: jquery phaser-framework cocoonjs

我有一个HTML5游戏在桌面和领导板(以及更多东西)中完美运行我使用ajax发送参数和接收数据。

事实是,一切都运转良好,但在茧中,在cocoonjs根本不工作,我不知道为什么,jQuery得到支持,理论上一切都应该没问题。有谁知道为什么不使用这段代码?

提前致谢。

$.ajax({
 type: 'GET',
 url: this.baseURL+'/getScores.php',
 data: { 
      'theGame': '1', 
      'theOrder': 'ASC'
 },
 fail: function(msg){
      alert(msg);
 }
 });

我也在尝试这段代码(不在cocoonjs中工作)

$.getJSON( STK.root.urlBase+"/getScores.php",
 { theGame: "1", theOrder: "ASC" }
)
 .done(function(data) {
      //DO STUFF
 })
 .fail(function( jqxhr, textStatus, error ) {
     console.log( "Request failed: " + err );
 });

1 个答案:

答案 0 :(得分:3)

好吧,一切都是CORS的事情,我用接收/发送数据的php文件中的这个标题修复了它:

header("Access-Control-Allow-Origin: *");