水合物对象字段

时间:2014-02-26 12:40:57

标签: rally appsdk2 lookbackapi

我想从lookback API获取用户故事的Feature对象。 但是当我尝试补充功能时,我只获得UnFormatted功能ID。

我可以从回顾结果集中获取用户故事的真实要素对象吗?

下面我用于检索数据的代码示例:

storeConfig: {
            find: {
                "_TypeHierarchy": { '$in' : [-51038] },
                "Children": null
            },
            fetch: ["ScheduleState", "PlanEstimate", "ObjectID", "_ValidFrom", "_ValidTo", "c_BaselineDeliveryConfidence", "Name", "Feature"],
            hydrate: ["ScheduleState", "c_BaselineDeliveryConfidence", "Name", "Feature"],
            sort: {
                "_ValidFrom": 1
            },
            compress: true,
            useHttpPost: true

2 个答案:

答案 0 :(得分:2)

不可能直接从LBAPI中水化物体。但是,我一直在使用类似于尼克建议的方法来帮助这样做。

https://github.com/ConnerReeves/RallyHelpers/blob/master/RecordHydrator/RecordHydrator.js

这是一个如何使用它的例子。我正在收集所有叶子用户故事(具有迭代分配),然后保湿该倡议字段:

launch: function() {
    var self = this;
    Ext.create('Rally.data.lookback.SnapshotStore', {
        limit   : Infinity,
        fetch   : ['Name','Iteration'],
        filters : [{
            property : '__At',
            value    : 'current'
        },{
            property : '_TypeHierarchy',
            value    : 'HierarchicalRequirement'
        },{
            property : 'Iteration',
            operator : '!=',
            value    : null
        },{
            property : 'Children',
            value    : null
        }]
    }).load({
        params : {
            compress                    : true,
            removeUnauthorizedSnapshots : true
        },
        callback : function(records, operation, success) {
            self._hydrateRecords(records);
        }
    });
},

_hydrateRecords: function(records) {
    Ext.create('CustomApp.RecordHydrator', {
        fields: [{
            name    : 'Iteration',
            hydrate : ['Name','StartDate','EndDate']
        }]
    }).hydrate(records).then({
        success: function(hydratedRecords) {
            console.log(_.groupBy(hydratedRecords, function(record) {
                return record.get('Iteration') && record.get('Iteration').get('Name');
            }));
        }
    });
}

答案 1 :(得分:0)

功能是用户故事引用的完整对象(通过功能属性)。 您的代码与此查询类似:

https://rally1.rallydev.com/analytics/v2.0/service/rally/workspace/111/artifact/snapshot/query.js?find={"_TypeHierarchy":"HierarchicalRequirement"}&fields=["Name","ScheduleState","PlanEstimate","Feature"]&hydrate=["ScheduleState"]

会返回这样的内容:

{
Feature: 12483739639,
Name: "my story",
ScheduleState: "Defined",
PlanEstimate: 3
}

其中12483739639是要素的ObjectID。在水合物中添加“特征”不会产生任何影响。

如果要获取完整的Feature对象或其某些属性,可以在代码中使用该功能的OID并发出单独的查询。您还可以将这些OID推送到数组中,并在第二个查询中使用$in运算符。