我在<?php
$id=2;
$post = get_post($id);
$content = apply_filters('the_content', $post->post_content);
echo $content;
?>
中收到JSON
这样的消息:
Mule
我想将{
"Id":1,
"Description":"Test",
"IssueId":16
}
映射到其他值,例如:
IssueId
最好的方法是什么?是否建议使用属性文件将来修改它?
答案 0 :(得分:0)
您可以使用DataWeave的lookup()功能,请参阅:https://docs.mulesoft.com/mule-user-guide/v/3.8/dataweave-language-introduction#calling-external-flows
答案 1 :(得分:0)
您可以使用属性文件执行此操作以使其可配置。
答案 2 :(得分:0)
最好将Initial值和Increment值放在属性文件中,并计算Java组件中的其他值。 这将有助于您将来相应地配置它们。