在特定日期使用Rally

在特定日期使用Rally

本文介绍了在特定日期使用Rally WsapiDataStore的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想创建一个图表,显示在冲刺期间给定的计划状态中有多少个任务.每天都有可能调用WsapiDataStore吗?

I want to create a chart of how many tasks are in a given Schedule State during the length of the sprint. Is it possible to call WsapiDataStore on each day?

推荐答案

您正在寻找的是回溯快照存储,使用回溯API -使用该API,您可以指定要查询的日期或时间点.

What you are looking for is a lookback Snapshot Store , using the Lookback API - this allows you to specify a date or a point in time that you want to query by.

典型用法如下:

    Ext.create('Rally.data.lookback.SnapshotStore', {
        pageSize : 10000,
        fetch    : ['fetch'],
        filters  : [{
            property : '__At',
            value    : 'current'
        },{
            property : '_ItemHierarchy',
            value    : 'HierarchicalRequirement'
        }]
    }).load({
        callback : function(records) {
            Ext.Array.each(records, function(record) {
                // do something with each record
            });
        }
    });

这篇关于在特定日期使用Rally WsapiDataStore的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-26 06:25