在Hyperledger-Composer

时间:2018-06-25 19:09:42

标签: hyperledger-composer relationships

在我的hyperledger作曲器应用程序中,我有客户和顾问。客户对已添加到其“ readAccessList”中的顾问具有读权限。

以下是这两种参与者类型的模型:

participant Client identified by id {
  o String id
  o String name
  --> Consultant[] readAccessList optional
}

participant Consultant identified by id {
  o String id
  o String name
  o String text
}

将顾问添加到客户端的readAccessList的事务定义如下:

transaction AddToReadableConsultantsOfClient {
  --> Client client
  --> Consultant[] newReadableConsultants
}

此交易的交易处理器功能如下:

/**
 * transaction AddToReadableConsultantsOfClient
 * @param {org.comp.myapp.AddToReadableConsultantsOfClient} transaction
 * @transaction
 */
async function addToReadableConsultantsOfClient(transaction) {

    // Save the old version of the client:
    const clientOld = transaction.client;

    // Update the client with the new readableConsultants:
    transaction.client.readAccessList.concat(transaction.newReadableConsultants);    

    // Get the participant registry containing the clients:
    const participantRegistry = await getParticipantRegistry('org.comp.myapp.Client');

    // Update the client in the participant registry:
    await participantRegistry.update(transaction.client);

    // Emit an event for the modified client:
    let event = getFactory().newEvent('org.comp.myapp', 'ClientUpdated');
    event.clientOld = clientOld;
    event.clientNew = transaction.client;
    emit(event);

}

在我的有角度的应用程序中,我尝试使用以下代码将几个顾问添加到客户端的readAccessList中:

//Note that the consultants referred to in the following array do actually exist:
let consultants = ["resource:org.comp.myapp.Consultant#1", "resource:org.comp.myapp.Consultant#2"];

this.transaction = {
  $class: "org.comp.myapp.AddToReadableConsultantsOfClient",       
      "client": "resource:org.comp.myapp.Client#" + this.clientId,
      "newReadableConsultants": consultants,
      "timestamp": new Date().getTime()
};

return this.addToReadableConsultantsOfClientService.addTransaction(this.transaction)
.toPromise()
.then(() => {
  this.errorMessage = null;
})
.catch((error) => {
    if(error == 'Server error'){
      this.errorMessage = "Could not connect to REST server. Please check your configuration details.";
    }
    else if(error == '404 - Not Found'){
      this.errorMessage = "404 - Could not find API route. Please check your available APIs."
    }
    else{
      this.errorMessage = error;
    }
});

由于某种原因,这不起作用。顾问不会添加到客户端的“ readAccessList”(保持为空)。

在控制台中,我收到一条奇怪的错误消息,内容如下:

Error: 2 UNKNOWN: error executing chaincode: transaction returned with failure: ReferenceError: org is not defined

我将关系添加到一系列关系的方法有什么问题?

1 个答案:

答案 0 :(得分:4)

我更改了您的交易脚本的1行:

transaction.client.readAccessList.concat(transaction.newReadableConsultants);

transaction.client.readAccessList=transaction.client.readAccessList.concat(transaction.newReadableConsultants);

我在Composer Playground中进行了测试,使用的JSON数据为:

{
 "$class": "org.comp.myapp.AddToReadableConsultantsOfClient",
 "client": "resource:org.comp.myapp.Client#MBC01",
 "newReadableConsultants": [
  "resource:org.comp.myapp.Consultant#C02"
 ]
}

该交易现在可以在Playground中使用-但我尚未通过Angular应用进行测试。