8

私の Backbone アプリには、テキスト入力選択フィールドとチェックボックスを含むフォームを含むいくつかのビューがあります。選択フィールドには、API からのデータを使用して入力する必要があります。特定の選択フィールドは、複数の異なるフォームで再利用できます。

これらのドロップダウンにデータを入力するために一般的に使用される方法は何ですか? これが私が一緒に作った解決策です...もっと一般的なアプローチはありますか?

app/views/shared/location_selection.js に入力される再利用可能な選択フィールド:

define([
  'jquery',
  'backbone',
  'app/views/base',
  'app/collections/location'
], function($, Backbone, BaseView, LocationCollection) {
  'use strict';

  return BaseView.extend({
    initialize: function(options) {
      this.options = options || {};
      this.options.id = this.options.id || 'location';
      this.options.showBlank = typeof this.options.showBlank != 'undefined' ? this.options.showBlank : false;

      this.collection = new LocationCollection();
    },

    render: function() {
      this.setElement('<select id="' + this.options.id + '"></select>');

      var self = this;
      this.collection.fetch({
        success: function() {
          if (self.options.showBlank) {
            self.$el.append('<option></option');
          }

          self.collection.each(function(model) {
            self.$el.append('<option value="' + model.get('id') + '">' + model.get('name') + '</option>');
          });
        }
      });

      return this;
    }
  });
});

そして、そのビューを使用する別のビューからのスニペット:

render: function() {
  this.$el.html(this.template(this.model.toJSON()));

  var locationSelectionView = new LocationSelectionView({ showBlank: !this.model.get('id') });
  this.$('.location').append(locationSelectionView.render().el);

  return this;
},

フォーム テンプレート:

<form role="form">
  <div class="form-group">
    <label for="imei">IMEI</label>
    <input type="text" class="form-control" id="imei" value="{{data.imei}}" />
  </div>
  <div class="form-group location">
    <label for="location">Location</label>
  </div>
  <div class="checkbox">
    <label><input id="master" type="checkbox"{{#if master}} checked="checked"{{/if}} /> Master</label>
  </div>
</form>
4

1 に答える 1

11

アイテム ビューとコレクション ビューの両方に個別のテンプレートがある場合は、次の方法で行うことができます。

var ItemView = Backbone.View.extend({
    tagName: 'option',
    initialize:function(){        
        this.template= _.template($('#menu_item_view').html());    
    },    
    render:function(){        
        this.$el.html(this.template(this.model.toJSON()));        
        return this;        
    }
});

var CollectionView = Backbone.View.extend({
    tagName: 'select',
    initialize:function(){        
        this.collection = new ItemCollection();            
        this.collection.on('sync',this.render,this);            
        this.collection.fetch();
    },    
    render:function(){        
        _.each(this.collection.models,function( item ){            
            this.$el.append(new ItemView({model:item}).render().el );        
        },this);      
        return this;        
    }
});

編集:メモとして、バックボーン1.0より前は、フェッチを呼び出したときに「リセット」をトリガーするために使用されていましたが、fetch({reset:true})を記述しない限り、「同期」をトリガーします。したがって、実行している Backbone のバージョンによっては、そのことに注意してください。

于 2013-09-19T22:07:48.833 に答える