我在API管理(https://devapi.testcustomer.com.au//bankv2?bsbNumber=123-456)中收到GET请求,并将其转换为对Logic App的POST调用。如何将var span = $('<span />', { html : $set_value });
$(this).replaceWith(span);
// if you wanted to do something to it later
span.on('click', function() { alert("wohoo") });
查询参数从传入请求传递到Logic App?
我在API政策中设置了逻辑应用Url:
bsbNumber
答案 0 :(得分:0)
您必须使用表达式context.Request.Url.Query.GetValueOrDefault("bsbNumber
“)
从查询字符串中获取bsbNumber的值。您可以使用它在重定向URI中创建参数。
Azure API管理中所有可能表达式的列表。
https://msdn.microsoft.com/en-us/library/azure/dn910913.aspx