1

Products と Category の 2 つのコレクションがあります。両方の挿入は正常に機能しています。私の問題は、製品リストのカテゴリの名前を返すことです。カテゴリーから_idで出品しています。その名前が必要です。

製品コレクションは次のとおりです。

Products = new Meteor.Collection('products');
/*
 * Add query methods like this:
 *  Products.findPublic = function () {
 *    return Products.find({is_public: true});
 *  }
 */
var Schema = {};
Schema.Products = new SimpleSchema({
    name: {
        type: String,
        label: "Nome",
        optional: false
    },
    category: {
        type: Schema.Categories,
        optional: false
    },
    "category.$.name": {
        type: String
    },
    subcategory: {
        type: Schema.Subcategories,
        optional: true
    },
    "subcategory.$.name": {
        type: String
    },
    description: {
        type: String,
        label: "Descrição",
        optional: true,
        max: 150
    }
});
Products.attachSchema(Schema.Products);

それらを一覧表示する Products ヘルパー:

Template.Products.helpers({
    // Return all products
    list: function() {
        return Products.find({}, {
            sort: {
                time: -1
            },
            fields: {
                name: true,
                category: true,
                subcategory: true
            }
        }).fetch();
    }
});

および製品テンプレート:

<template name="Products">
<fieldset>
    <legend>
        <p class="pull-left">
        Produtos
        </p>
        <a href="{{pathFor 'ProductsNew'}}" class="btn pull-right btn-success btn-sm">Novo Cadastro</a>
        <div class="clearfix"></div>
    </legend>
    <table class="table">
        <thead>
            <tr>
                <th>Nome</th>
                <th>Categoria</th>
                <th>Subcategoria</th>
                <th></th>
            </tr>
        </thead>
        <tbody>
            {{#each list}}
            <tr>
                <td>{{name}}</td>
                <td>{{category}}</td>
                <td>{{subcategory}}</td>
                <td>
                    <a href="{{pathFor 'ProductsEdit' _id }}" class="btn btn-xs btn-primary">Editar</a>
                </td>
                <td>
                    <button class="destroy btn btn-danger btn-xs">Delete</button>
                </td>
            </tr>
            {{/each}}
        </tbody>
    </table>
</fieldset>
</template>

どうやってやるの?

ここに私の問題の画像があります:

ここに画像の説明を入力

4

1 に答える 1

1

デビッドは正しいです。単一の製品例が役立ちます。何をしようとしているのか理解に苦しむ。しかし、私の最善の推測はこれです:

テンプレートで試してください

<td>{{categoryName}}</td>
<td>{{subcategoryName}}</td>

そしてあなたのjsで

Template.Products.categoryName = function() { 
         var _category = Categories.findOne({_id: this.category});
         return _category ? _category.name : "";
}

Template.Products.subcategoryName = function() {
         var _subcategory = Subcategories.findOne({_id: this.subcategory});
         return _subcategory ? _subcategory.name : "";
}
于 2014-07-18T01:55:03.270 に答える