Restangular,是否可以在没有先前阅读的情况下进行 Post?

Restangular, is it possible to do a Post without a previous reading?

在文档的示例中,每个 POST 之前都有一个读数,是否可以在没有前一步的情况下进行 Post?

再见, 埃尔维

Restangular需要知道你要访问哪个资源post,这是必须的步骤,否则无法生成url。

不获取数据,只需要不使用get()getList()方法即可。

所以这些都应该有效:

var account = Restangular.service("accounts");
account.post({data});

var account Restangular.oneUrl('googlers', 'http://www.google.com/1');
account.post({data});

// the 'one()' method will allow you to use 'account.save()' later which will decide to POST or PUT accordingly
var account = Restangular.one("accounts");
account.post({data});