Hyperledger Composer ACL条件中绑定变量的描述

问题描述 投票:0回答:1

我正在尝试确定Hyperledger Composer ACL条件中绑定了哪些变量。文档只是说条件是绑定变量上的布尔JavaScript表达式。在哪里可以找到绑定的变量?

hyperledger-composer
1个回答
0
投票
rule R2 {
    description: "regulator with ID Bill can not update a Car if they own it"
    participant(r): "org.example.Regulator#Bill"
    operation: UPDATE
    resource(c): "org.example.Car"
    condition: (c.owner == r)
    action: DENY
}

r是绑定到参与者的变量,c是绑定到资源的变量希望您能这样问,因为您正在尝试移走现有的composer实施,因为Composer现在已经寿终正寝。

© www.soinside.com 2019 - 2024. All rights reserved.