天蓝色函数服务总线输出消息属性
I'm trying to set metadata for service bus messages in a JavaScript Azure Function using the service bus binding output. Unfortunately, it appears that the binding only supports the body.
Looking at the docs, I see that you can access this information in service bus triggers via context.bindingData
but I don't see any corresponding interface for service bus output.
Is there some way to send a full brokered message and set the message properties (ContentType) and message custom properties?
解决方案There is an open issue for this at https://github.com/Azure/Azure-Functions/issues/454
Some customers seemed to have found a workaround. Perhaps you can try their approach mentioned here https://github.com/Azure/Azure-Functions/issues/454#issuecomment-375154151
相关文章