MS VSTS如何在树中查看需求

时间:2018-06-25 10:08:45

标签: tree azure-devops requirements workitem

我们正在评估VSTS作为需求/测试管理平台的过程。

是否可以在树形结构中查看需求(或一般的工作项目)?

我已经尝试过,但是找不到任何方法。

欢呼

1 个答案:

答案 0 :(得分:2)

如果您是将子工作项目映射到父母并以树状结构显示工作项目,则可以尝试以下方式:

  • 待办事项中:

    您可以将Option Explicit Public Sub test() Dim html As HTMLDocument Set html = New HTMLDocument With CreateObject("WINHTTP.WinHTTPRequest.5.1") .Open "GET", "http://www.someurl.com", False .send html.body.innerHTML = .responseText End With Dim aNodeList As Object, iItem As Long Set aNodeList = html.querySelectorAll("#images img[src^='img/']") With ActiveSheet For iItem = 0 To aNodeList.Length - 1 .Cells(iItem + 1, 1) = aNodeList.item(iItem).innerText '.Cells(iItem + 1, 1) = aNodeList(iItem).innerText '<== or potentially this syntax Next iItem End With End Sub 设置为Parents,然后单击展开的Show图标以 展开层次结构的(单击两次以展开两个 级别)。参见.querySelectorAll

  • 查询中:

    使用树查询(one level)查看工作项的多层嵌套列表。 参见Show parents and expand the tree hierarchy

Use a tree query to view hierarchies