我在composer-rest-server上的POST正文不正确

时间:2018-12-09 23:48:28

标签: hyperledger hyperledger-composer

我有一个名为getAllFieldsInInstitute的函数,其中带有模型函数

@returns(Field[])
transaction GetAllFieldsInInstitute{
  o String instituteId
}

我有一个类似的名为getAllEventTypesInInstitute的函数,带有一个模型函数:

@returns(EventType[])
transaction GetAllEventTypesInInstitute{
  o String instituteId
}

script.js的两个函数具有相同的逻辑文件。 这是这两个功能的POST正文:

This is the POST body for the second function

我已经对它进行了GetAllEventTypesInInstitute的测试,并且可以正常工作。

This is the post body of the first function

它与GetAllFieldsInInstitute不匹配,并且不起作用。我需要更改什么?

编辑:函数主体在bluemix上正确:function body on composer bluemix

我已经从bluemix下载了.bna文件,并将其部署在localhost上。

1 个答案:

答案 0 :(得分:0)

浏览器上的帖子正文不正确。如果我从composer-playground复制帖子正文并发布到API,则会得到正确的响应。