你如何循环关系中的项目?

时间:2016-04-20 23:47:32

标签: objectscript

这是当前的代码:

Class %Utcov.Test Extends %RegisteredObject
{

ClassMethod listClasses(ns As %String, projectName As %String)
{
    // Switch namespaces to the new one
    new $namespace
    set $namespace = ns

    // Grab our project, by name; fail otherwise
    // TODO: failing is CRUDE at this point...
    #dim project as %Studio.Project
    #dim status as %Status

    // TODO: note sure what the "concurrency" parameter is; leave the default
    // which is -1
    set project = ##class(%Studio.Project).%OpenId(projectName, /* default */, .status)

    if ('status) {
        write "Argh; failed to load", !
        halt // meh... Ugly, f*ing ugly
    }

    w project.Items
}

ClassMethod main()
{
    do ..listClasses("USER", "cache-tort-git")
}

}

首先要做的事情:我知道代码很糟糕......但那是学习曲线,我最终会做得更好......我想在这里解决的问题是这一行:

w project.Items

在控制台上,它当前打印:

2@%Library.RelationshiptObject

但我想要做的当然是循环浏览这些对象,根据文档,这些对象是%Studio.ProjectItem的“实例”。

如何循环使用这些? WRITE没有削减它,事实上我从一开始就猜测它不会......我只是无法弄清楚如何在ObjectScript中完成它:/

2 个答案:

答案 0 :(得分:2)

当您使用w project.Items的writed对象时,您得到了这样的字符串2@%Library.RelationshiptObject,这个字符串可能有助于理解我们得到的对象,在这种情况下它是类{{1}的对象},当您在documentation中打开此课程时,您可能会找到一些可以帮助您的方法 Here你可以找到一些例子,如何使用对象,对象和sql。

答案 1 :(得分:0)

Set tKey = ""
For {
    ;tItem will be the first item in your list which will be ordered by OREF
    Set tItem = project.Items.GetNext(.tKey)
    Quit:(tKey = "")
    ;Do whatever you want with tItem
}