使用多个标签的Cloudinary Search API

问题描述

我正在使用Search API(.net),需要使用多个标签进行搜索。 示例:

tags: shoe and women and red

这应该退回所有红色女鞋。使用单个标签 .Expression(“ tags = shoe”)有效,但不能使用多个标签。

失败的代码:

SearchResult result = cloudinary.Search()
.Expression("tags=shoe women red")
.Execute();

失败的代码:

SearchResult result = cloudinary.Search()
.Expression("tags=shoe,women,red")
.Execute();

两个示例均不适用于多个标签。

如何使用带有多个标签的Search API进行搜索?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)