[TOC]
### AJAX 网络请求
#### 参数
| 参数 | 注释 |可选|取值范围|默认值 |例子 |
| --- | --- |--- |--- |--- |--- |
| url | 请求的url | | | | https://www.ea55.com/1 |
| method | 请求方法 | 可选 | get , post | post | post |
| dataType | 返回数据类型 | 可选 | json ,text| json | json |
| data | 请求参数数组对象 | 可选 || | {name:1,id:2} |
#### 例子
```
Ea55_App.ajax({
url: 'http://www.ea55.com',
method: 'get',
dataType:'json',
tag:'ajax001',
data: {
}, files: {
}
}, function (ret, err) {
if (ret) {
} else {
}
});
```
### 取消AJAX网络请求
tag参数是在ajax请求的时候带入
```
Ea55_App.cancelAjax({ tag: 'ajax001' });
```