LoginSignup
2
1

More than 5 years have passed since last update.

backboneのmodel.destroyではまったのでメモ

Last updated at Posted at 2014-02-21

backboneのmodelでdestroyを使ったらはまったのでメモ。

modelに対してdestroyを使うと対象のModelがCollectionに保存されている場合は、Collectionからは削除されます。

なんと。。。

つまり

collection.add(model)

concole.log collection.length  # 1
model.destroy =>
   success: =>
      hogehoge
   error: =>
      hugahuga
   complete: =>
      hogefuga

concole.log collection.length  # 0

と勝手にcollectionから削除されてました。

特定の場合だけcollectionから削除したいときはお気をつけ下さい。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1