嗨,我正在尝试创建一个简单的m流,其中我从其他网址获取json数据
例如。
{
“令牌”:123,
“ id”:456,
“电子邮件”:“ abc@abc.com”,
“状态”:“成功”
}
现在我希望我的响应仅显示2个字段,因此我的最终输出json将是这样的..
例如 { “ id”:456, “电子邮件”:“ abc@abc.com” }
我知道这是非常基本的。我会很高兴任何人都可以帮助我,因为我对m子非常基础。谢谢!
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:dw="http://www.mulesoft.org/schema/mule/ee/dw" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
xmlns:spring="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/ee/dw http://www.mulesoft.org/schema/mule/ee/dw/current/dw.xsd">
<http:listener-config name="HTTP_Listener_Configuration" host="0.0.0.0" port="8081" doc:name="HTTP Listener Configuration"/>
<http:request-config name="HTTP_Request_Configuration" host="reqres.in" port="8080" doc:name="HTTP Request Configuration"/>
<flow name="testFlow">
<http:listener config-ref="HTTP_Listener_Configuration" path="/test" allowedMethods="GET" doc:name="HTTP"/>
<http:request config-ref="HTTP_Request_Configuration" path="/api/users/2" method="GET" doc:name="HTTP"/>
<logger message="#[payload]" level="INFO" doc:name="Logger"/>
</flow>
</mule>
答案 0 :(得分:0)
在http:request组件之后的转换消息组件中尝试此操作
%dw 1.0
%output application/json
---
{
id:payload.id,
email:payload.email
}
答案 1 :(得分:0)
您将需要在HTTP侦听器之后转换有效负载以删除这些字段。
您可以采用两种不同的方法:指定有效载荷中应该包含哪些元素,或指定有效载荷中应包含哪些元素 。
Anirban的答案指定了有效载荷中应该包含哪些元素。您可以通过以下方法指定有效载荷中不应包含哪些元素:
%dw 1.0
%output application/json
---
payload - "token" - "status"
答案 2 :(得分:0)
由于您是m子的新手,因此可以使用简单的设置有效负载和一些json路径表达式来尝试此简单解决方案。
<flow name="jsonTransform">
<http:listener config-ref="HTTP_Listener_Configuration" path="/jsonTransform" doc:name="HTTP" allowedMethods="POST"/>
<set-payload value="{ "id" : "#[json:id]", "email" : "#[json:email]" }" doc:name="Set Payload"/>
<json:object-to-json-transformer doc:name="Object to JSON"/>
</flow>