【发布时间】:2020-08-31 03:36:24
【问题描述】:
我正在使用搜索 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 进行搜索?
【问题讨论】:
标签: cloudinary