私はバックボーンが初めてです。私はrails3アプリを持っています。これらは私のバックボーン モデルです。
class AppName.Models.Order extends Backbone.RelationalModel
paramRoot: 'order'
relations: [
type: Backbone.HasMany
key: 'order_services'
relatedModel: 'AppName.Models.OrderService'
collectionType: 'AppName.Collections.OrderServicesCollection'
includeInJSON: false
reverseRelation:
key: 'order_id',
includeInJSON: 'id'
]
class AppName.Models.OrderService extends Backbone.RelationalModel
paramRoot: 'order_service'
サーバーにまだ保存されていない新しい注文モデルがあります。order_service.get('order') で order にアクセスできるように、新しい order_service をその注文の子として作成するにはどうすればよいですか?
注文を段階的に作成する必要があります。order_services を追加し、他のモデルを追加して、注文を保存します。保存されていない注文を order_services (他のモデルの子も保存されていない) でローカルに保存し、このすべてのものをサーバーに保存することは可能ですか?