小米科技|Cocos Creator中快速实现HTTP( 二 )


     
      callback && callback(xhr.status resp xhr.responseText);
   
  ;
  xhr.onerror = function (err) {
    callback && callback(-1 null \"Network error\");
  ;
  var text = typeof (data) == \"string\" ? data :JSON.stringify(data);
  xhr.send(text);
  return xhr;

总结【小米科技|Cocos Creator中快速实现HTTP】有了以上几个函数之后 , 游戏中的大多数HTTP协议都能够应对了 。