@
shengyu 这就是我要的,
// 声明类型
var Post = AV.Object.extend('Post');
// 新建对象
var post = new Post();
// 设置属性
post.set('content','每个 Java 程序员必备的 8 个开发工具');
post.set('pubUser', 'LeanCloud 官方客服');
post.set('pubTimestamp',1435541999);
post.save().then(function (post) {
console.log('objectId is ' +
post.id);
}, function (error) {
console.error(error);
});
var query = new AV.Query('Todo');
query.get('57328ca079bc44005c2472d0').then(function (todo) {
// 成功获得实例
// todo 就是 id 为 57328ca079bc44005c2472d0 的 Todo 对象实例
}, function (error) {
// 异常处理
});
多谢!