最初由Sashkan在http://www.abc.co.in:
上提出
是'数据'由oboe.js处理?
我一直在使用oboe来传输来自API的响应。所有不需要参数的调用都可以很好地工作,但是如何使用依赖于参数的调用呢?
// basic ajax request for my call is
$.ajax({
dataType: "json",
url: url,
data: data,
success: success
});
// 'data' is my parameters list, as a json string. How can I pass it to oboe ?
oboe(url)
.done(function(things) {
alert('success');
console.log(things);
})
.fail(function(test) {
alert( "ERROR: " + test );
console.log(test);
});
答案 0 :(得分:0)
正确答案是:
oboe({
'url': url,
'method': 'POST', //optional
'body': data //no need to encode, the library will JSON stringify it automatically
}).on('done',function(things){
//do something with things
});
答案 1 :(得分:0)
如果某人正在寻找一种使用可缓存的GET请求执行RESTful方式的方法,则只需将查询参数添加到URI即可,就像这样:
var query = $.param(data);
oboe(url+"?"+query)
.done(function(things) {
alert('success');
console.log(things);
})
.fail(function(test) {
alert( "ERROR: " + test );
console.log(test);
});
请注意,我正在使用JQuery
答案 2 :(得分:-1)
JuanCaicedo提供的答案
您可以将配置对象传递给oboe函数,将数据作为请求体传递(您可能必须根据API期望的格式对其进行格式化)。您可以在http://oboejs.com/api中找到更多详细信息。