我正在尝试更新和hyperledger资产,在这种情况下,我试图将新的提供程序添加到资产中的提供程序数组列表,但作曲家不要让我。
我不知道出了什么问题。 Belor是模型,javascript和错误。
型号:
/*
* 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
}
脚本文件:这是我的所有功能
/**
* @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;
}
错误:" TypeError:无法读取属性' push'未定义"
答案 0 :(得分:0)
要修改现有资产,您需要使用getAssetRegistry
等功能,然后使用update
方法。
Composer Playground中的Trade-Network示例有一个简单的事务来更新资产,这是一个简单的参考。
Developer Tutorial中使用了相同的网络。
答案 1 :(得分:0)
我遇到了同样的问题。事实证明,您可能无法推送到空/未定义的数组。
我为此使用了以下修复程序(根据您的程序进行修改):
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);
}