|
很多朋友phonegap开发中经常用的是jsonp请求数据 今天给大家讲讲phonegap如何支持get请求和post请求,类似原生请求方式
插件地址:
http://plugins.cordova.io/#/package/plugin.http.request
下面告诉大家使用方法:
安装:
$> cordova plugin add plugin.http.request
实例化插件
var httpReq = new plugin.HttpRequest();
HTTP / GET 请求
httpReq.get("http://your.domain/get/", function(status, data) { alert(data);});
HTTP / GET请求 and JSON 请求httpReq.getJSON("http://your.domain/get/JSON/", function(status, data) { alert(JSON.stringify(data));});
HTTP / POST 请求
httpReq.post("http://your.domain/post/", { name: $("input[name='name']").val(), email: $("input[name='email']").val()},function(err, data) { alert(data);});
HTTP / POST 请求 and JSON 请求
httpReq.post("http://your.domain/post/JSON/", { name: $("input[name='name']").val(), email: $("input[name='email']").val()},function(err, data) { alert(JSON.stringify(data));});
|
|