【发布时间】:2017-12-01 01:30:57
【问题描述】:
我在 javascript 的 azure 函数中将完整的代理消息发送到 azure 服务总线输出时遇到问题。 该文档仅显示一个简单的正文消息 https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-service-bus,没有任何 customerProperties。
到目前为止,我创建完整代理消息的尝试失败了,所有内容都进入正文。
var message = {'body' : 'test', 'customProperties' : {'fromsystem':'sap'}};
context.bindings.outputSbMsg = message;
context.done(null, res);
【问题讨论】:
标签: azure azure-functions azureservicebus