简体   繁体   中英

How to Updating Existing Assets? - Hyperledger Composer

I am trying to update and Asset in hyperledger, in this case I am trying to add a new provider to a provider array list in the Asset but hthe composer dont let me.

I dont know what is wrong. Belor are the model, the javascript and the error.

Model:

/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

namespace org.acme.Bicycle


asset Bicycle identified by serial {
  o String serial
  --> Rider owner optional
  --> Rider [] ownerold optional
  --> Provider [] distribuold optional
  --> Store [] Storeold optional
  --> Manufacturing manufacturing
}

abstract participant User identified by email {
  o String email
  o String firstName
  o String lastName
}


participant Rider extends User {

}

participant Manufacturing extends User {

}

participant Provider extends User {

}

participant Store extends User {

}


participant Police extends User {

}

transaction check {
  o String date
  o String Description
  --> Rider owner
  --> Police police
  --> Bicycle bike
}


transaction fabrictodistri {
    o String Description
    --> Manufacturing manufacturing
    --> Bicycle bike
    --> Provider providerstore
}



transaction providertostore {
    o String Description
    --> Bicycle bike
    --> Provider providerstore
    --> Store Storeold
}


transaction storetobiker {
    o String Description
    --> Bicycle bike
    --> Store Storeold
    --> Rider owner
}

Script file: here is all my functions

/**
   * @param {org.acme.Bicycle.check} check
   * @transaction 
*/
async function check(check) {
  let owner = check.bike.owner.email;
  let  ciclista = check.owner.email;

  if(owner != ciclista){
    check.description= "This is not the owner";
    throw new Error('This is not the owner');
  }else{
    check.description= "This is the owner";
    throw new Error('This is not the owner');
  }  

}


/**
   * @param {org.acme.Bicycle.fabrictodistri} ftod
   * @transaction 
*/
async function fabrictodistri(ftod) {
      let bike = ftod.bike;
       bike.distribuold.push(ftod.providerstore);

}

/**
   * @param {org.acme.Bicycle.providertostore} ptosto
   * @transaction 
*/
async function providertostore(ptosto) {

   let bike = ptosto.bike;
   bike.distribuold.push(ptosto.providerstore);
   bike.Storeold.push(ptosto.Storeold);

}


/**
   * @param {org.acme.Bicycle.storetobiker} stostobik
   * @transaction 
*/
async function storetobiker(stostobik) {

   let bike = stostobik.bike;
    bike.ownerold.push(stostobik.owner);
    bike.owner = stostobik.owner;  

}

Error: "TypeError: Cannot read property 'push' of undefined"

Image

In order to modify your existing assets you need to use functions such as getAssetRegistry and then use the update method.

The Trade-Network sample in Composer Playground has a simple transaction to update an asset which is an easy reference.

The same network is used in the Developer Tutorial .

I faced the same issue. Turns out you probably can't push to a array which is empty/undefined.

I used the following fix for that (Modify it according to your program) :

 if (typeof roj.contributors == 'undefined') { // Check if the array is empty roj.contributors = new Array(); roj.contributors[0] = createROData.creator; } else { roj.contributors.push(createROData.creator); } 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM