减少 ends_with() 的查询语法

减少 ends_with() 的查询语法

我有以下疑问:

--query "Contents[?ends_with(Key, 'jpg') || ends_with(Key, 'NEF') || ends_with(Key, 'nef') || ends_with(Key, 'CR2') || ends_with(Key, 'cr2')]"

有没有办法减少这种情况?我尝试过将所有后缀放在一个 ends_with 中并用 OR 分隔。这没用。上面的方法有效,但很粗糙。谢谢!

相关内容