annie.URLLoader Class
小游戏不支持 小程序不支持
资源加载类,后台请求,加载资源和后台交互都可以使用此类Item Index
Methods
Properties
Methods
addEventListener
(
Void
public
-
type
-
listener
-
useCapture
给对象添加一个侦听
Parameters:
Returns:
Void:
Example:
this.addEventListener(annie.Event.ADD_TO_STAGE,function(e){console.log(this);}.bind(this));
destroy
()
Void
public
销毁一个对象 销毁之前一定要做完其他善后工作,否则有可能会出错 特别注意不能在对象自身方法或事件里调用此方法。 比如,不要在显示对象自身的 annie.Event.ON_REMOVE_TO_STAGE 或者其他类似事件调用,一定会报错
Returns:
Void:
dispatchEvent
(
Boolean
public
-
event
-
data
-
useCapture
广播侦听
Parameters:
-
event
annie.Event | String广播所带的事件对象,如果传的是字符串则自动生成一个annie.Event对象,事件类型就是传入进来的字符串的值
-
data
Object广播后跟着事件一起传过去的其他任信息,默认值为null
-
useCapture
Booleantrue 捕获阶段 false 冒泡阶段 默认 true
Returns:
Boolean:
如果有收听者则返回true
Example:
var mySprite=new annie.Sprite(),
yourEvent=new annie.Event("yourCustomerEvent");
yourEvent.data={a:1,b:2,c:"hello",d:{aa:1,bb:2}};
mySprite.addEventListener("yourCustomerEvent",function(e){
console.log(e.data);
})
mySprite.dispatchEvent(yourEvent);
load
(
public
-
url
-
contentType
加载或请求数据
loadCancel
()
public
取消加载
removeAllEventListener
()
Void
public
移除对象中所有的侦听
Returns:
Void:
removeEventListener
(
Void
public
-
type
-
listener
-
useCapture
移除对应类型的侦听
Parameters:
Returns:
Void:
Properties
instanceId
Number
public
每一个annie引擎对象都会有一个唯一的id码。
Example:
//获取 annie引擎类对象唯一码
console.log(this.instanceId);
Events
annie.Event.ABORT
annie.URLLoader中断事件
annie.Event.COMPLETE
完成事件
annie.Event.ERROR
annie.URLLoader出错事件
annie.Event.PROGRESS
annie.URLLoader加载过程事件
annie.Event.START
annie.URLLoader开始事件