get(url) |
发送http或https协议get请求 - url,请求的服务器URL地址 |
ui.form-name.http-name.get('https://www.baidu.com') 发送get请求百度 |
post(url) |
发送http或https协议post请求 - url,请求的服务器URL地址 |
ui.form-name.http-name.post('https://www.baidu.com') 发送post请求百度 |
post(url, content) |
发送http或https协议post请求 - url,请求的服务器URL地址 -content, post请求发送的数据内容 |
ui.form-name.http-name.post('https://www.baidu.com','abcd') 发送post请求百度,数据内容为'abcd' |
read() |
1.8.0版本已废弃,请直接使用onReceive()方法的content值 |
无 |
setHeader(name, value) |
设置http请求头内容 |
ui.form-name.http-name.setHeader('Content-Type', 'application/json') 设置请求头的'content-type'值 |
startDownload(url, path) |
开始下载文件,url为请求地址,path为文件下载后的保存路径 |
ui.form-name.http-name.startDownload('http://cloud.wareexpress.com/ota/ota.json', '/storage/d0/ota.json'); 下载一个json文件并保存到U盘根目录下 |
stopDownload() |
停止当前正在下载的任务 |
ui.form-name.http-name.stopDownload() 停止正在下载的任务 |