Sharepoint显示模板如何使用组显示模板

时间:2017-12-20 18:57:28

标签: javascript sharepoint display-templates

控件显示模板中的代码使用_#= ctx.RenderGroups(ctx) =#_并且还有另一个名为group_content.js的JS文件被调用,如何将数据拆分成组以便为每个组呈现一些HTML?

2 个答案:

答案 0 :(得分:0)

经过深入研究,您需要手动操作才能使用它。

  1. 创建群组显示模板文件,只需采用默认" group_xxx.html"来自"搜索"或"内容搜索"文件夹,无论您使用什么。

  2. 必须下载副本或您搜索WebPart(导出)并更改" GroupTemplateId"到您的组JS文件。

  3. CODING对象模仿ResultTables对象

  4. 最终代码

    ctx.ClientControl.set_groupTemplateId('~sitecollection/_catalogs/masterpage/display templates/content web parts/Group_Content_QA.js');
    ctx.ListDataJSONGroupsKey = "ResultGrouped"
    ctx.ListData.ResultGrouped = [];
    
    //function to create the ResultTables fake array
    function createResultGroup(items){
     return {
      ResultRows: items, 
      RowCount: items.length,
      TableType: "RelevantResults",
     }
    };
    
    //just a ref
    var _items = ctx.ListData.ResultTables[0].ResultRows;
    
    //categories dictionary
    var _groupDictionary = {};
    
    //populating dictionary categories
    _items.forEach(function(e) {
        if ( !_groupDictionary[e.QACategoryOWSCHCS] ){
       _groupDictionary[e.QACategoryOWSCHCS] = [];
        }
    });
    
    //populating dictionary categories with items
    _items.forEach(function(e) {
     _groupDictionary[e.QACategoryOWSCHCS].push(e);
    });
    
    //adding to ctx categories as a named array
    ctx.groupsNames = Object.keys(_groupDictionary);
    
    //populating fake ResultTables array (ResultGrouped)
    ctx.groupsNames.forEach(function(g) {
     ctx.ListData.ResultGrouped.push(
      createResultGroup(_groupDictionary[g])
     );
    });
    

    read more here

答案 1 :(得分:0)

完成答案后,我认为使用ctx.ListData[ctx.ListDataJSONGroupsKey]数组的好处是为每个组使用不同的组和项目显示模板。使用开发人员工具观看此数组将显示以下形式的对象数组:

GroupTemplateId: null
ItemTemplateId: null
Properties: {GenerationId: 9223372036854776000, indexSystem: "", ExecutionTimeMs: 63, QueryModification: "path:"https://modernsharepointexperiences.sharepoi…tItem") -ContentClass=urn:content-class:SPSPeople", RenderTemplateId: "~sitecollection/_catalogs/masterpage/Display Templates/Search/Group_Default.js", …}
QueryId: "ca540784-162f-4a9e-9ad4-da45e615ca06"
QueryRuleId: "00000000-0000-0000-0000-000000000000"
ResultRows: (10) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
ResultTitle: null
ResultTitleUrl: null
RowCount: 10
TableType: "RelevantResults"
TotalRows: 10
TotalRowsIncludingDuplicates: 31
_ObjectType_: "Microsoft.SharePoint.Client.Search.Query.ResultTable"

在这里,我认为,我们可以为上述数组的每个元素(实际上是每个组)设置“组显示模板”和“项目显示模板”。如果您认为我错了,请纠正我!谢谢