我已成功将私有数据集合添加到我的网络中。以下是我遵循的过程。我想要这个集合上的Org1和Org3。我关注了collection_config.json
[
{
"name": "collectionOrg1Org3",
"policy": "OR('Org1MSP.member', 'Org3MSP.member')",
"requiredPeerCount": 0,
"maxPeerCount": 3,
"blockToLive":1000000,
"memberOnlyRead": true
}
]
然后,当我在集合上启动链式代码时,我添加了这个集合。我使用了collections-config
参数,如下所示。
docker exec \
-e CORE_PEER_LOCALMSPID=Org1MSP \
-e CORE_PEER_MSPCONFIGPATH=${Org1_MSPCONFIGPATH} \
cli \
peer chaincode instantiate \
-o orderer.bc4scm.de:7050 \
-C mychannel \
-n scmlogic \
-l "$CC_RUNTIME_LANGUAGE" \
-v 1.0 \
-c '{"Args":[]}' \
-P "OR('Org1MSP.member','Org3MSP.member')" \
--tls \
--cafile ${ORDERER_TLS_ROOTCERT_FILE} \
--peerAddresses peer0.org1.bc4scm.de:7051 \
--tlsRootCertFiles ${Org1_TLS_ROOTCERT_FILE} \
--collections-config ${CC_SRC_PATH}/collection_config.json
它没有给我任何错误。因此,我希望它添加正确。
下一个任务是由授权对等方将数据添加到此集合中,并从该集合中查询数据。我一直在寻找可以参考的示例代码,但是找不到用Node.js编写的代码。官方文档提供了example的打字稿,但没有使用javascript。我有以下问题。
我正在使用以下代码,由运行正常的Org1用户将数据添加到通道中。请提供我应该做的更新。
'use strict';
const { FileSystemWallet, Gateway } = require('fabric-network');
const path = require('path');
const ccpPath = path.resolve(__dirname, '..', '..', 'network', 'connection-org1.json');
async function main() {
try {
const walletPath = path.join(process.cwd(), 'wallet');
const wallet = new FileSystemWallet(walletPath);
console.log(`Wallet path: ${walletPath}`);
// Check to see if we've already enrolled the user.
const userExists = await wallet.exists('user1');
if (!userExists) {
console.log('An identity for the user "user1" does not exist in the wallet');
console.log('Run the registerUser.js application before retrying');
return;
}
// Create a new gateway for connecting to our peer node.
const gateway = new Gateway();
await gateway.connect(ccpPath, { wallet, identity: 'user1', discovery: { enabled: true, asLocalhost: true } });
// Get the network (channel) our contract is deployed to.
const network = await gateway.getNetwork('iboretailerchannel');
// Get the contract from the network.
const contract = network.getContract('scmlogic');
// Submit the specified transaction.
// createCar transaction - requires 5 argument, ex: ('createCar', 'CAR12', 'Honda', 'Accord', 'Black', 'Tom')
// changeCarOwner transaction - requires 2 args , ex: ('changeCarOwner', 'CAR10', 'Dave')
await contract.submitTransaction('createCar', 'CAR12', 'Honda', 'Accord', 'Black', 'Tom');
console.log('Transaction has been submitted');
// Disconnect from the gateway.
await gateway.disconnect();
} catch (error) {
console.error(`Failed to submit transaction: ${error}`);
process.exit(1);
}
}
main();
以下是我的客户代码,用于从Org3查询用户的数据
'use strict';
const { FileSystemWallet, Gateway } = require('fabric-network');
const path = require('path');
const ccpPath = path.resolve(__dirname, '..', '..', 'network', 'connection-org3.json');
async function main() {
try {
let user = 'user4';
// Create a new file system based wallet for managing identities.
const walletPath = path.join(process.cwd(), 'wallet');
const wallet = new FileSystemWallet(walletPath);
console.log(`Wallet path: ${walletPath}`);
// Check to see if we've already enrolled the user.
const userExists = await wallet.exists(user);
if (!userExists) {
console.log('An identity for the user ' + user + ' does not exist in the wallet');
console.log('Run the registerUser.js application before retrying');
return;
}
const gateway = new Gateway();
await gateway.connect(ccpPath, { wallet, identity: user, discovery: { enabled: true, asLocalhost: true } });
const result = await contract.evaluateTransaction('queryAllCars','BR0');
console.log(`Transaction has been evaluated, result is: ${result.toString()}`);
} catch (error) {
console.error(`Failed to evaluate transaction: ${error}`);
process.exit(1);
}
}
main();
我没有使用任何biolerplate。
感谢您对此问题的投入。先感谢您。
答案 0 :(得分:0)
我应该更改链代码中的任何内容以支持此新功能吗? 采集?我希望不是。如果我错了,请纠正我。
从上面的调用/查询代码片段中,似乎没有将集合名称作为参数传递。
因此,我认为您可能已经在存根函数 PutPrivateData 和 getPrivateData 上用链码本身对集合名称进行了硬编码。
是的,您必须为添加的新集合一次又一次地编辑链码。 解决方案是仅将集合名称与客户端应用程序中的其余参数/参数一起传递。
如何在Node.js客户端中实现添加数据和查询逻辑 应用程序来做到这一点?
您只需在 submitTransaction 和 evaluateTransaction 中添加集合名称参数以及其余的参数/参数,其余代码保持不变。
如有任何疑问,请发表评论。