cmp.ajax 类
ajax
构造函数
cmp.ajax
cmp.ajax
(
-
options
)
参数:
名称 | 类型 | 标识 | 描述 | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options
| Object | 必选 | 配置参数
|
示例:
<script>
cmp.ajax({
type:"POST",
data:JSON.stringify(body),
url:"http://xxxxx",
header:{
'Content-Type': 'application/json; charset=utf-8',
'Accept-Language' : "zh-CN",
},
dataType:"json",
success:function(result){
//do something with success result;
},
error:function(error){
//do something with error
}
});
</script>