下面是cocos2d-js请求网络数据的代码:
var HttpRequest = { /* * 网络请求之GET * url 请求的网络地址 * callback 回调参数 * */ GET:function(url,callback){ var xhr = cc.loader.getXMLHttpRequest(); xhr.open("GET",url,true); xhr.onreadystatechange = function () { if (xhr.readyState == 4 && (xhr.status >= 200 && xhr.status = 200 && xhr.status <br><span>但是,请求网络出现了:No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:63342' is therefore not allowed access.</span><p><span>这是因为浏览器不能跨域访问,我们在服务端找到这个要请求的文件:设置一下header</span></p><p></p><pre name="code"><?php header("Access-Control-Allow-Origin : *"); echo "I Love you" ?>
以上就介绍了cocos2d-js跨域访问问题,cocos2d-js请求网络数据,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。