基本上我有两个相关的问题,但我会将它们与数字分开 1)我正在尝试从集合中将单个字段加载到选择下拉框中,但是它填充了从下面的列表中收集的所有重复值,而不是它自己的帮助器。
<template name="carsList">
{{> categoryFilter}}
<ul class="collection" id="listings">
{{#each cars}}
<li>
{{> carItem}}
</li>
{{/each}}
</ul>
</template>
类别模板是
<template name="categoryFilter">
<div class="input-field">
<select>
<option value="" disabled selected>Choose your option</option>
{{#each companyCategories}}
{{> companyCategory}}
{{/each}}
</select>
<label>Select Category</label>
</div>
</template>
<template name="companyCategory">
<option>{{ccategory}}</option>
</template>
categoryFilter使用下面的帮助
持有iam的下拉模板Template.categoryFilter.helpers({
companyCategories: function(){
return Cars.find();
}
});
而不是从自己的帮助器中填充它来加载来自&#34; listing&#34;的数据。低于它并重复数据。
Image of the result in selectbox
2)我还想根据选择下拉框中选择的值过滤列表(Ofcourse reactive)
请帮忙
修改
这就是我的模板现在的样子
<template name="categoryFilter">
<div class="input-field">
<select>
<option value="" disabled selected>Choose your option</option>
{{#each companyCategories}}
{{> companyCategory}}
{{/each}}
</select>
<label>Select Category</label>
</div>
</template>
<template name="companyCategory">
<option>{{justCategory}}</option>
</template>
答案 0 :(得分:0)
以下是我的进展方式。首先,下拉列表:您应该使用游标而不是文档数组。所以你的助手应该是:
Template.categoryFilter.helpers({
companyCategories: function(){
return Jobs.find();
}
});
并且您的categoryFilter
模板HTML可能是这样的
<template name="categoryFilter">
<div class="dropdown">
<button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-expanded="true">
{{selectedCategory}} <!-- refer to an helper which returns the reactive variable-->
<span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1">
{{#each companyCategories}}
<li role="presentation"><a role="menuitem" class="categoryItem" tabindex="-1" href="#">{{yourCatergoryNameField}}</a></li>
{{/each}}
</ul>
</div>
</template>
然后,您可以创建一个事件来记录单击时在下拉列表中选择的当前类别
"click .categoryItem": function(e, t) {
var text = $(e.target).text()
Session.set("selectedCategory", text)
},
现在,您可以使用selectedCategory
反应变量过滤汽车。为此,您需要另一个帮手。例如:
Template.carList.helpers({
carListingByCategory: function(){
var filter = Session.get ("selectedCategory");
return Car.find(category:filter)
}
});
这应该可以解决问题。我从不使用Session,所以它可能不会像我想的那样工作。如果它不起作用,请改用ReactiveDict。基本上,您在文档的开头添加了var pageSession = new ReactiveDict();
,并且可以在我的代码中将Session
替换为pageSession
。
修改强>
好的,让我们尝试使用下划线。基于此answer,您可以执行以下操作来返回allJobs中每个项目的所有不同类别:
Template.categoryFilter.helpers({
companyCategories: _.uniq(Collection.find({}, {
sort: {myField: 1}, fields: {myField: true}
}).fetch().map(function(x) {
return x.myField;
}), true);
}
});
其中myfield
是您的类别数组字段。
编辑2
尝试更改您的html并将{{justCategory}}
替换为{{this}}
:
<template name="categoryFilter">
<div class="input-field">
<select>
<option value="" disabled selected>Choose your option</option>
{{#each companyCategories}}
{{> companyCategory}}
{{/each}}
</select>
<label>Select Category</label>
</div>
</template>
<template name="companyCategory">
<option>{{this}}</option>
</template>