Backbonejs-coll-sync

提供:Dev Guides
移動先:案内検索

BackboneJS-コレクションの同期

説明

*Backbone.sync* を使用して、コレクションの状態をサーバーに永続化します。

構文

collection.sync(method, collection, options)

パラメーター

  • method -作成、読み取り、更新、削除などのCRUD操作を表します。
  • コレクション-コレクションにデータを保存するためのモデルのセットが含まれています。
  • options -成功したメソッドに応じて、成功またはエラーメッセージを起動します。

<!DOCTYPE html>
<html>
   <head>
      <title>Collection Example</title>
      <script src = "https://code.jquery.com/jquery-2.1.3.min.js"
         type = "text/javascript"></script>

      <script src = "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js"
         type = "text/javascript"></script>

      <script src = "https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js"
         type = "text/javascript"></script>
   </head>

   <body>
      <script type = "text/javascript">

        //The sync() method reads and fetches the model data
         Backbone.sync = function(method, model) {
            document.write("The state of the model is:");
            document.write("<br>");

           //The 'method' specifies state of the model
            document.write(method + ": " + JSON.stringify(model));
         };

        //The 'myval' is collection instance and contains the values which are to be fetched
        //in the collection
         var myval = new Backbone.Collection ({
            site:"finddevguides",
            title:"Simply Easy Learning..."
         });

        //The myval.fetch() method display the model's state by delegating the sync() method
         myval.fetch();
      </script>

   </body>
</html>

出力

上記のコードがどのように機能するかを確認するために、次の手順を実行してみましょう-

  • 上記のコードを sync ファイルに保存します。
  • このHTMLファイルをブラウザーで開きます。