0

我正在尝试获取 Rally 中特定用户故事的父史诗/功能。但是我只得到父对象,我不知道如何解析它。我尝试过dict和 dir(object) 来获取字段值,但它不起作用。我也尝试过以下方法,但我不断得到类似的东西,而不是父对象中的字段/值

pyral.entity.PortfolioItem_Capability 对象位于 0x7ff848273850

代码:

def get_hierarchy(server,username,password,workspace,project,release):
   rally = Rally(server, username, password, workspace=workspace, project=project)
   criterion = 'Release.Name = "'+release+'" AND Parent != None'
   response = rally.get('HierarchicalRequirement',fetch="ObjectID,FormattedID,Name,AcceptedDate,Project,Release,ScheduleState,Parent,Description",query=criterion,limit=5000)
   return response  
for item in get_hierarchy("rally1.rallydev.com","some.email@address.com","Somepassword","Some Workspace Name","PROJECT NAME","Release Version"):
   print item.FormattedID, item.Name, item.ScheduleState, item.Description, item.Parent.Name
4

1 回答 1

0

父级也是一个对象,您必须解析类似于用户故事的父级。对于简单的解决方案,请继续使用点格式。这是一个与上面类似的代码片段,应该让你开始。

    queryString = '(Iteration.StartDate > "2017-08-31")'
    entityName = 'HierarchicalRequirement'
    response = rally.get(entityName, fetch=True, projectScopeDown=True, query=queryString)

    for item in response:
        print(item.FormattedID,
             item.PortfolioItem.FormattedID,
             item.PortfolioItem.Parent.FormattedID,
             item.PlanEstimate)

我正在使用 Python 3.x,但我看不出它不会转换为 2.7 的任何原因。

于 2018-11-05T17:26:09.543 回答