使用 Mule MongoDB 连接器,如何将字段存储为 BinData 类型?
<mongo:insert-object-from-map collection="#[variable:collectionName]">
<mongo:element-attributes>
<mongo:element-attribute key="msg_id">BinData(3, '#[message:id]')</mongo:element-attribute>
<mongo:element-attribute key="shortcode">#[map-payload:shortcode]</mongo:element-attribute>
<mongo:element-attribute key="msg">#[map-payload:msg]</mongo:element-attribute>
</mongo:element-attributes>
</mongo:insert-object-from-map>
我试过的上面这个例子只存储字符串“BinData(3,'eea894d1-b0b5-11e1-91c7-a769a8d50370')”
这可能吗?