1

次のjsonnetがあります。

{
        local property = "global variable",

        property: "global property",
        bar: self.property,   // global property
        baz: property,        // global variable

        nested: {
            local property = "local variable",

            property: "local property",
            bar: self.property,       // local property
            baz: property,            // local variable

            // Q1:
            // Can I get the property of parent from here? In my case:
            // property: "global property"
            // I want to use some kind of relative addressing, from child to parent not other way like:
            // $.property
            // I've tried:
            // super.property
            // but got errors

            // Q2:
            // Can I get the name of the key in which this block is wrapped? In my case:
            // "nested"
        }
}

私の目標は、子から親にアクセスすることです。質問は、コンテキストの理解を深めるためにコメントに記載されています。ありがとう

4

1 に答える 1

2

superオブジェクトの継承に使用されることに注意してください(つまり、ベースオブジェクトを拡張して、たとえばいくつかのフィールドをオーバーライドする場合、https://jsonnet.org/learning/tutorial.html#ooを参照してください)。

トリックは、参照したいオブジェクトを指すローカル変数をプラグインすることです:self

{
        local property = "global variable",

        property: "global property",
        bar: self.property,   // global property
        baz: property,        // global variable

        // "Plug" a local variable pointing here
        local this = self,

        nested: {
            local property = "local variable",

            property: "local property",
            bar: self.property,       // local property
            baz: property,            // local variable

            // Use variable set at container obj
            glo1: this.property,
            // In this particular case, can also use '$' to refer to the root obj
            glo2: $.property,
        }
}
于 2020-05-04T11:35:41.430 に答える