不使用 Javascript 的 APIGEE 边缘中的字符串修改

String modification in APIGEE edge without using Javascript

我想知道 apigee edge 中有一个像 lower() 这样的关键字可以将值更改为小写以检查条件流

http://api.com/{uriparam}?Action=Lower

降低(request.queryparam.Action)==“降低”

有没有什么方法可以不使用任何 java 脚本来实现这一点?

A​​pigee 有自己的运算符来进行不区分大小写的匹配。所以你可以只使用 := 而不是 == 它会匹配你的例子。

request.queryparam.Action := "lower"

另请参阅 Apigee 文档中的条件参考:https://docs.apigee.com/api-platform/reference/conditions-reference#operators