1

構築しようとしている小さな資産追跡システムがあります。多くのアセットがあり、多くのタグがあります。アセットには多くのタグがあり、その逆

リストからタグを選択して、選択したタグに属するアセットのみを表示できるようにしたいと考えています。

選択ビューにタグのリストを表示する方法を理解するのに苦労しています。ルートに関係しているような気がします...

タグデータをアセットルートに渡すために使用しようとしてthis.controllerFor('tags').set('content', this.store.find('tag')いますが、データが正しく設定されていないようです...

また、リストをフィルター処理するためのロジックが不足していることにも気付きました。

http://jsfiddle.net/viciousfish/g7xm7/

Javascript コード:

App = Ember.Application.create({
 ready: function() {
    console.log('App ready');
  }
});

App.ApplicationAdapter = DS.FixtureAdapter.extend();

//ROUTER
App.Router.map(function () {
  this.resource('assets', { path: '/' });
  this.resource('tags', { path: '/tags' });
});

//ROUTES
App.AssetsRoute = Ember.Route.extend({
  model: function () {
    return this.store.find('asset');
  },
  setupController: function(controller, model) {
    this._super(controller, model);
    this.controllerFor('tags').set('content', this.store.find('tag') );
  }
});

//Tags Controller to load all tags for listing in select view
App.TagsController = Ember.ArrayController.extend();

App.AssetsController = Ember.ArrayController.extend({
  needs: ['tags'],
  selectedTag: null
});


//MODEL
App.Asset = DS.Model.extend({
    name: DS.attr('string'),
    tags: DS.hasMany('tag')
});

App.Tag = DS.Model.extend({
    name: DS.attr('string'),
    assets: DS.hasMany('asset')
});

//FIXTURE DATA
App.Asset.FIXTURES = [
{
    id: 1,
    name: "fixture1",
    tags: [1,2]
},
{
    id: 2,
    name: "fixture2",
    tags: [1]
},   
{
    id: 3,
    name: "fixture3",
    tags: [2]
}];

App.Tag.FIXTURES = [
{
    id: 1,
    name: 'Tag1',
    assets: [1,2]
},
{
    id: 2,
    name: 'Tag2',
    assets: [1,3]
}];

口ひげのある HTML:

<body>
    <script type="text/x-handlebars" data-template-name="assets">
        {{view Ember.Select
            contentBinding="controller.tags.content"
            optionValuePath="content.id"
            optionLabelPath="content.name"
            valueBinding="selectedTag"
        }}

        <table>
            <tr>
                <td>"ID"</td>
                <td>"Name"</td>
            </tr>
            {{#each}}
            <tr>
                <td>{{id}}</td>
                <td>{{name}}</td>
            </tr>
            {{/each}}
        </table>
    </script>
</body>
4

1 に答える 1

1

Ember.Selectでは、 の代わりにcontentBinding="controller.tags.content"使用する必要があります。参照されるコントローラーを controllers プロパティに追加する必要があるためです。あなたの場合、資産テンプレートにあるので、そのインスタンスにアクセスするために使用するだけです。controllerscontrollerneeds: ['tags']AssetsControllercontrollers.tags

これは更新された選択です:

{{view Ember.Select
    contentBinding="controllers.tags.content"
    optionValuePath="content.id"
    optionLabelPath="content.name"
    valueBinding="selectedTag"
    prompt="Select a tag" 
}}

データをフィルタリングできるようにするために、 に依存する計算プロパティを作成できますselectedTag。そして、selectedTag値を使用してコンテンツをフィルタリングします。次のように:

App.AssetsController = Ember.ArrayController.extend({
  needs: ['tags'],
  selectedTag: null,
  assetsByTag: function() {      
      var selectedTag = this.get('selectedTag');
      var found = [];
      this.get('model').forEach(function(asset) {
          return asset.get('tags').forEach(function(tag) {
              if (tag.get('id') === selectedTag) {
                  found.pushObject(asset);
              }
          });
      });
      return found;
  }.property('selectedTag')
});

テンプレートでは、各ヘルパーでそのプロパティを参照します。

{{#each assetsByTag}}
    <tr>
        <td>{{id}}</td>
        <td>{{name}}</td>
    </tr>
{{/each}}

これは実用的なフィドルですhttp://jsfiddle.net/marciojunior/gqZj3/

于 2013-10-15T18:16:39.513 に答える