Egret引擎 HttpRequest 報錯No 'Access-Control-Allow-Origin'

var params = "format=json&uid=" + arg['uid'] + "&cid=" + arg['cid']+"&method="+arg['method'];
        this.request = new egret.HttpRequest();
        this.request.responseType = egret.HttpResponseType.TEXT;
        this.request.open(this._svrUrl,egret.HttpMethod.POST);
        //this.request.open("php/post_test.php",egret.HttpMethod.POST);
        this.request.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
        this.request.send(params);
        this.request.addEventListener(egret.Event.COMPLETE,this.onPostComplete,this);
        this.request.addEventListener(egret.IOErrorEvent.IO_ERROR,this.onPostIOError,this);
        this.request.addEventListener(egret.ProgressEvent.PROGRESS,this.onPostProgress,this);


報錯內容


  1. XMLHttpRequest cannot load http......
  2. No 'Access-Control-Allow-Origin' header is present on the requested resource.  
  3. Origin 'http://192.168.0.105:3001' is therefore not allowed access.

可以在 Nginx服務器的 nginx.conf 裏面加上 指令

add_header Cache-Control public;  
add_header Access-Control-Allow-Origin *;


問題解決

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章