如何在不添加更多 html 的情况下在 dividually 中切换 foreach div 的淘汰赛?

How do I toggle a knockout foreach div individually without adding more html?

我使用 foreach 方法为可观察数组中的每个项目创建标记以创建树视图。 输出示例

类别名称1 内容 内容 类别名称 2 内容 内容

当我点击类别名称时,我只想将其内容添加到 show/hide,目前当我点击类别名称时,它会显示和隐藏所有类别。

 var reportFilters = [
        { Text: "Campaign", Value: primaryCategories.Campaign },
        { Text: "Team", Value: primaryCategories.Team },
        { Text: "Agent", Value: primaryCategories.Agent },
        { Text: "List", Value: primaryCategories.List },
        { Text: "Inbound", Value: primaryCategories.Inbound },
        { Text: "Daily", Value: primaryCategories.Daily },
        { Text: "Services", Value: primaryCategories.Services },
        { Text: "Occupancy", Value: primaryCategories.Occupancy },
        { Text: "Data", Value: primaryCategories.Data }
    ];


  self.showCategory = ko.observable(false);      
    self.toggleVisibility = function (report) {
        var categoryName = report.PrimaryReportCategory;
        var categoryContent = report.ID;
        if (categoryName == categoryContent ) {
            self.showCategory(!self.showCategory());
        };
    }
  <div class="report-category-treeview"  data-bind="foreach: $root.categories, mCustomScrollBar:true">
            <ul class="column-list" >
                <li class="report-category-heading" data-bind="click: $root.toggleVisibility"><span class="margin-top10" ><i class="fas fa-chevron-down"></i> <span class="report-category-name" data-bind="text: categoryName"></span></span></li>
                <li id="panel" class="report-category-container" data-bind="foreach: reports, visible: $root.showCategory">
                    <div class="column-list-item" data-bind="click: $root.report_click, css: { 'selected': typeof $root.selectedReport() != 'undefined' && $data == $root.selectedReport() }">
                        <span class="column-list-text" data-bind="text: ReportName"></span>
                    </div>
                </li>
            </ul>
        </div>

currently, when I click on the category name, it shows and hides all the categories.

这是因为 showCategory 是您负责 showing\hiding 的单一可观察对象。您真正想要的是每个类别 show\hide 个可观察

我不确定你的整个数据模型是什么样的,但既然你特别询问了 categories,那么你应该创建一个 category 视图模型,可能还有一些容器视图模型,我将在这里命名 master:

var categoryVM = function (name) {
    var self = this;
    self.name = ko.observable(name);
    self.isVisible = ko.observable(false);
    self.toggleVisibility = function () {
        self.isVisible(!self.isVisible());
    }
    // ... add here your other observables ...
}

// name 'masterVM' whatever you like
var masterVM = function () {
    var self = this;
    self.categories = ko.observables([]);
    // ... probably add here other observables, e.g. 'reports' ...
    self.init = function (rawCategories) {
        rawCategories.forEach(function (item) {
            categories.push(new categoryVM(item.name)); // replace 'name' with your property
        }
    }
}

var master = new masterVM();
master.init(getCategories()); // pass in your categories from wherever they come from
ko.applyBindings(master);

然后,在你的 html 中,这将是你的外部 foreach:

<div class="report-category-treeview" data-bind="foreach: categories ... />

和您的 li(为简洁起见,我省略了您 li 下的嵌套标签):

<li class="report-category-heading" 
    data-bind="click: toggleVisibility">
<li id="panel" class="report-category-container" 
    data-bind="foreach: $root.reports, visible: isVisible">