我正在使用meteor restivus包开发API,我想发布数据并希望保存在数据库中。我已完成以下编码,但无法在api电话上获取发布的数据。
// made post api using restivus
Restivus.configure({
useAuth: false,
prettyJson: true
});
Restivus.addRoute('addorder', {authRequired: true}, {
post:{
action: function (data) {
console.log(data); // undefined
return {status: "success", data: "test"};
}
}
});
上面的api我正在使用服务器端方法调用我已经完成了以下编码。
Meteor.methods({
apiInsert:function (name){
this.unblock();
console.log("api insert method");
var url = "http://localhost:3000/api/addorder";
var result = HTTP.post(url,{
data: { "name": name },
headers:{
"content-type":"application/json ; charset=UTF-8",
}
});
但我没有在api函数中发布数据我在数据变量中未定义。我不知道如何在api函数中检索发布的数据。
答案 0 :(得分:2)
尝试使用this.bodyParams。
post: {
action: function () {
return {status: 'success', data: this.bodyParams};
}