function initializeModel(model) {
Book = function() {}
Book.prototype.title = gapi.drive.realtime.custom.collaborativeField('title');
Book.prototype.author = gapi.drive.realtime.custom.collaborativeField('author');
Book.prototype.isbn = gapi.drive.realtime.custom.collaborativeField('isbn');
Book.prototype.isCheckedOut = gapi.drive.realtime.custom.collaborativeField('isCheckedOut');
Book.prototype.reviews = gapi.drive.realtime.custom.collaborativeField('reviews');
gapi.drive.realtime.custom.registerType(this.Book, 'Book');
//Error begin from here
var book = model.create('Book');
book .title = "hello,waiter"
model.getRoot().set('book', book);
}
クロムコンソールで思い出させます:
Drive Realtime API エラー: invalid_compound_operation: 同期ブロックの最後で複合操作を開く - endCompoundOperation() を呼び出すのを忘れましたか?
どこで間違いを犯しますか?Google ドライブのリアルタイム API でカスタム タイプを作成する例を教えてください。