Azure Functions:是否可以订阅多个主题?

Azure Functions: Is it possible to subscribe to multiple topics?

这是我的 functions.json:

{
    "bindings": [
        {
            "type": "serviceBusTrigger",
            "name": "message",
            "connection": "ServiceBusConnectionString",
            "direction": "in",
            "topicName": "samples-topic",
            "subscriptionName": "samples",
            "accessRights": "manage"
        }
    ]
}

同一功能是否可以订阅多个主题?

干杯。

不支持多个主题,但您可以通过创建订阅以将消息从您要使用的主题转发到您可以在您的函数中使用的目标主题来实现相同的结果。

另一种选择是具有多种功能,但第一种建议需要较少的维护。