我已经按照http://docs.syncano.io/docs/angularjs上的教程进行了操作,但它只显示了如何从syncano列出类数据。
syncano.class('CLASS').dataobject().list()
.then(function (res) {
$scope.items = res.objects;
})
.catch(function (err) {
console.log(err);
$scope.error = err;
})
我也搜索过如何添加数据。看起来可能的唯一方法是使用api引用。 任何人都可以指出我朝着正确的方向去做到这一点。还有更新和删除。
答案 0 :(得分:2)
查看文档,您可以使用
syncano.class('CLASS').dataobject().add(object)
.then(function(res) {
console.log(res);
})
.catch(function(err) {
console.log(err);
});