我目前的代码如下:
HTTP.post("http://httpbin.org/post", {},
function(error, results) {
if (results) {
console.log(results);
} else {
console.log(error)
}
}
);
所以,如果我想发布一些json数据,我在哪里传递它?我试图将它作为我的http post方法的第二个参数传递但是它不会工作并且请告诉我在哪里输入api密钥?
由于
答案 0 :(得分:1)
简单
var data = {
key: value,
key2: value2
};
var headers = {
};
var res = HTTP.post(url, { data: data, headers: headers });
检查文档以获取更多选项http://docs.meteor.com/#/full/http_call