我制作了一个 Hyperledger 作曲家网络。我想查看具有查询代码的我的函数。
例如,我的功能的内容是
/**
* @param {hansung.ac.kr.transaction.selectUserByCertificateName} tx - the member to be processed
* @transaction
*/
function selectUserByCertificateName (tx) {
var idList = [];
query("selectCertificateByName" , {targetName: tx.certificateName })
.then(function (certificateList) {
certificateList.forEach(function (certificate) {
idList.push(certificate.ownerId);
})
}).then(function () {
idList.forEach(function (id) {
query("selectUserById" , {targetId: id })
.then(function (userList){
console.log(userList);
});
})
});
}
这种情况下,我尝试console.log。我想在我的角度页面中看到这个结果(userList)。
在 Angular 中,http.get 方法用于接收 rest-server 数据
,但是我不知道如何编辑 composer-rest-server 响应格式,我想将 userList 发送到 rest 响应。
如何扩展 Composer 休息服务器?
如果存在另一种获取数据的方法,请提供建议