我正在尝试确定Hyperledger Composer ACL条件中绑定了哪些变量。文档只是说这个条件是一个绑定变量上的布尔JavaScript表达式。在哪里可以找到边界周围的变量?
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现在已经寿终正寝了。