需要在查询中使国家动态化。
当前查询:
$top=4&$select=CustomerID,CompanyName,Country&$filter=Country eq 'Italy'
国家“意大利”应该从标题中动态选取。
尝试将查询更改为:
$top=4&$select=CustomerID,CompanyName,Country&$filter=Country eq ${in.header.country}
。这会出错并且不起作用。
尝试将查询更改为:
$top=4&$select=CustomerID,CompanyName,Country&$filter=Country eq ${in.header.country}
。这会出错并且不起作用。
预计数据将根据国家/地区进行过滤。
尝试使用以下表达式代替 ${in.header.country}
将 ${in.header.country} 替换为 ${header.Country}