我想我不明白 POST 是如何在 RESTful api 中完成的。在 Restangular 中创建一个新对象时:
var user = {name: "John", id:"123"};
Restangular.one('building','5').post(user);
我希望它将带有用户值的 $_POST 数组传递给 url example.com/api/building/5
并且知道它正在向正确的脚本发出 POST 请求,但 $_POST 数组为空。知道我做错了什么吗?