Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想<set-variable>在 APIM 的策略中存储多个值。
<set-variable>
是否有任何选项可以定义数组变量或将字符串转换为字符串 []。
您唯一的选择是将数组序列化为字符串,或使用 JArray,例如
<set-variable name="array" value="@(new JArray(1, 2, 3))"/>