我实际上正在对从 AngularJS 的转换进行 JSON-RPC 调用。由于请求的内容类型是application/json,因此输入参数会自动在上下文中可用,因此我不需要显式处理它。
这是我对“教程”组件中的“getUsers”的请求。
function($scope, $http) {
$http ({
url: 'tutorial/getUsers',
method: "POST",
data: JSON.stringify({username:'demouser1'}),
headers: {'Content-Type': 'application/json'}
}).success(function(response){
$scope.userList = response;
});
}]);
转换的代码写在下面
<transition name="getUsers">
<actions>
<service-call name="Tutorial.PartyServices.get#Users" in-map="context"/>
</actions>
<default-response type="none"/>
</transition>
服务看起来像这样
<service verb="get" noun="Users">
<in-parameters>
<parameter name="username"/>
</in-parameters>
<actions>
<entity-find entity-name="PersonAndUserAccount" list="userList">
<search-form-inputs default-order-by="firstName,lastName,username"/>
<econdition field-name="username" operator="equals" to-field-name="username"/>
</entity-find>
<script>ec.web.sendJsonResponse(userList)</script>
</actions>
</service>
现在发送我ec.web.sendJsonResponse(userList)
在服务本身中编写的 JSON 响应。这使得服务与期望 JSON 作为响应的服务调用紧密耦合。如果我想在内部调用此服务,即在 Moqui 中,我将不得不定义另一个服务。
所以我的问题是我可以在进行此服务调用的过渡中处理此响应吗?